Skip to content

Commit

Permalink
Merge pull request #223359 from fabaff/pyzerproc-asynctest
Browse files Browse the repository at this point in the history
python310Packages.pyzerproc: remove asynctest
  • Loading branch information
fabaff authored Mar 27, 2023
2 parents e74d282 + a188ce3 commit 5153478
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pkgs/development/python-modules/pyzerproc/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ lib
, asynctest
, bleak
, click
, buildPythonPackage
Expand All @@ -15,12 +14,12 @@ buildPythonPackage rec {
version = "0.4.11";
format = "setuptools";

disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "emlove";
repo = pname;
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-FNiq/dbh5PMTxnKCKDSHEvllehAEUYvWZS+OyP3lSW8=";
};

Expand All @@ -37,8 +36,6 @@ buildPythonPackage rec {
pytest-asyncio
pytest-mock
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.8") [
asynctest
];

pythonImportsCheck = [
Expand Down

0 comments on commit 5153478

Please sign in to comment.