Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 25 lines 531 B view raw
1{ lib, buildPythonPackage, fetchPypi, six, pytest }: 2 3buildPythonPackage 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}