2018-03-18 12:17:58 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "allpairspy";
|
2019-10-24 07:47:23 +01:00
|
|
|
version = "2.5.0";
|
2018-03-18 12:17:58 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:23 +01:00
|
|
|
sha256 = "9358484c91abe74ba18daf9d6d6904c5be7cc8818397d05248c9d336023c28b1";
|
2018-03-18 12:17:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Pairwise test combinations generator";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/thombashi/allpairspy";
|
2018-03-18 12:17:58 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|