Skip to content

Commit

Permalink
python310Packages.pytest-twisted: 1.13.2 -> 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Mar 17, 2023
1 parent 4e5346d commit 9a89bf9
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions pkgs/development/python-modules/pytest-twisted/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,37 @@
, greenlet
, pytest
, decorator
, twisted
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "pytest-twisted";
version = "1.13.2";
version = "1.14.0";
format = "setuptools";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "cee2320becc5625050ab221b8f38533e636651a24644612f4726891fdf1f1847";
sha256 = "sha256-IJv1pkUs+/th3o8BWQLBTsgSZACRFQcHS7LuTOjf4xM=";
};

buildInputs = [ pytest ];
buildInputs = [
pytest
];

propagatedBuildInputs = [ greenlet decorator ];
propagatedBuildInputs = [
decorator
greenlet
];

nativeCheckInputs = [
pytestCheckHook
twisted
];

pythonImportsCheck = [
"pytest_twisted"
];

meta = with lib; {
description = "A twisted plugin for py.test";
Expand Down

0 comments on commit 9a89bf9

Please sign in to comment.