pythonPackages.pytest-tornado: init at 0.4.5
This commit is contained in:
parent
e4718a81bf
commit
ab4cd34077
28
pkgs/development/python-modules/pytest-tornado/default.nix
Normal file
28
pkgs/development/python-modules/pytest-tornado/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pytest
|
||||||
|
, tornado
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-tornado";
|
||||||
|
version = "0.4.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0b1r5im7qmbpmxhfvq13a6rp78sjjrrpysfnjkd9hggavgc75dr8";
|
||||||
|
};
|
||||||
|
|
||||||
|
# package has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pytest tornado ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.";
|
||||||
|
homepage = https://github.com/eugeniy/pytest-tornado;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ ixxie ];
|
||||||
|
};
|
||||||
|
}
|
@ -346,6 +346,8 @@ in {
|
|||||||
slurm = pkgs.slurm;
|
slurm = pkgs.slurm;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
|
||||||
|
|
||||||
python-sql = callPackage ../development/python-modules/python-sql { };
|
python-sql = callPackage ../development/python-modules/python-sql { };
|
||||||
|
|
||||||
python-stdnum = callPackage ../development/python-modules/python-stdnum { };
|
python-stdnum = callPackage ../development/python-modules/python-stdnum { };
|
||||||
|
Loading…
Reference in New Issue
Block a user