Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.allpairspy: init at 2.4.0

(cherry picked from commit bd7a7bd817367b3c77f7184ca9fbca6e437d321e)

+27
+25
pkgs/development/python-modules/allpairspy/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, six, pytest }: 2 + 3 + buildPythonPackage rec { 4 + pname = "allpairspy"; 5 + version = "2.4.0"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "9fb7962ee523bd96c5098cd3c97ac1b8eb73021d3df9314657ee9de00f52e034"; 10 + }; 11 + 12 + propagatedBuildInputs = [ six ]; 13 + 14 + checkInputs = [ pytest ]; 15 + 16 + checkPhase = '' 17 + py.test 18 + ''; 19 + 20 + meta = with lib; { 21 + description = "Pairwise test combinations generator"; 22 + homepage = https://github.com/thombashi/allpairspy; 23 + license = licenses.mit; 24 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 452 452 453 453 alembic = callPackage ../development/python-modules/alembic {}; 454 454 455 + allpairspy = callPackage ../development/python-modules/allpairspy { }; 456 + 455 457 ansicolors = callPackage ../development/python-modules/ansicolors {}; 456 458 457 459 aniso8601 = callPackage ../development/python-modules/aniso8601 {};