mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.pytest-twisted: init at 1.12
This commit is contained in:
parent
5286afc72b
commit
d112ef306f
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/pytest-twisted/default.nix
Normal file
27
pkgs/development/python-modules/pytest-twisted/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, greenlet
|
||||||
|
, pytest
|
||||||
|
, decorator
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-twisted";
|
||||||
|
version = "1.12";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "bb9af117c5c6063d9ef20ffdf2fa297caaf57de5a687e4d3607db7b0a6f74fea";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ greenlet pytest 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1290,6 +1290,8 @@ in {
|
||||||
|
|
||||||
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
|
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
|
||||||
|
|
||||||
|
pytest-twisted = callPackage ../development/python-modules/pytest-twisted { };
|
||||||
|
|
||||||
pytest-xprocess = callPackage ../development/python-modules/pytest-xprocess { };
|
pytest-xprocess = callPackage ../development/python-modules/pytest-xprocess { };
|
||||||
|
|
||||||
pytest-xvfb = callPackage ../development/python-modules/pytest-xvfb { };
|
pytest-xvfb = callPackage ../development/python-modules/pytest-xvfb { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue