My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytest-twisted/default.nix

29 lines
600 B

{ lib
, buildPythonPackage
, fetchPypi
, greenlet
, pytest
, decorator
}:
buildPythonPackage rec {
pname = "pytest-twisted";
version = "1.13.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "cee2320becc5625050ab221b8f38533e636651a24644612f4726891fdf1f1847";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ greenlet decorator ];
meta = with lib; {
description = "A twisted plugin for py.test";
homepage = "https://github.com/pytest-dev/pytest-twisted";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}