Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, six, pytest }: 2 3buildPythonPackage rec { 4 pname = "allpairspy"; 5 version = "2.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "9358484c91abe74ba18daf9d6d6904c5be7cc8818397d05248c9d336023c28b1"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 nativeCheckInputs = [ 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}