nixpkgs/pkgs/development/python-modules/allpairspy/default.nix

26 lines
533 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, six, pytest }:
buildPythonPackage rec {
pname = "allpairspy";
2019-10-24 06:47:23 +00:00
version = "2.5.0";
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:23 +00:00
sha256 = "9358484c91abe74ba18daf9d6d6904c5be7cc8818397d05248c9d336023c28b1";
};
propagatedBuildInputs = [ six ];
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with lib; {
description = "Pairwise test combinations generator";
homepage = "https://github.com/thombashi/allpairspy";
license = licenses.mit;
};
}