Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 515 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "py"; 4 version = "1.4.34"; 5 name = "${pname}-${version}"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1qyd5z0hv8ymxy84v5vig3vps2fvhcf4bdlksb3r03h549fmhb8g"; 10 }; 11 12 # Circular dependency on pytest 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "Library with cross-python path, ini-parsing, io, code, log facilities"; 17 homepage = http://pylib.readthedocs.org/; 18 license = licenses.mit; 19 }; 20}