pythonPackages.allpairspy: init at 2.4.0
This commit is contained in:
parent
097dd635fa
commit
bd7a7bd817
25
pkgs/development/python-modules/allpairspy/default.nix
Normal file
25
pkgs/development/python-modules/allpairspy/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, six, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "allpairspy";
|
||||||
|
version = "2.4.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "9fb7962ee523bd96c5098cd3c97ac1b8eb73021d3df9314657ee9de00f52e034";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Pairwise test combinations generator";
|
||||||
|
homepage = https://github.com/thombashi/allpairspy;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -456,6 +456,8 @@ in {
|
|||||||
|
|
||||||
alembic = callPackage ../development/python-modules/alembic {};
|
alembic = callPackage ../development/python-modules/alembic {};
|
||||||
|
|
||||||
|
allpairspy = callPackage ../development/python-modules/allpairspy { };
|
||||||
|
|
||||||
ansicolors = callPackage ../development/python-modules/ansicolors {};
|
ansicolors = callPackage ../development/python-modules/ansicolors {};
|
||||||
|
|
||||||
aniso8601 = callPackage ../development/python-modules/aniso8601 {};
|
aniso8601 = callPackage ../development/python-modules/aniso8601 {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user