Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 505 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, six 5}: 6 7buildPythonPackage rec { 8 pname = "ppft"; 9 version = "1.6.4.9"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "5537b00afb7b247da0f59cc57ee5680178be61c8b2e21b5a0672b70a3d247791"; 14 }; 15 16 checkPhase = '' 17 python -m ppft.tests 18 ''; 19 20 propagatedBuildInputs = [ six ]; 21 22 meta = with stdenv.lib; { 23 description = "Distributed and parallel python"; 24 homepage = https://github.com/uqfoundation; 25 license = licenses.bsd3; 26 }; 27 28}