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