Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 469 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pbr"; 5 version = "5.4.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "07f558fece33b05caf857474a366dfcc00562bca13dd8b47b2b3e22d9f9bf55c"; 10 }; 11 12 # circular dependencies with fixtures 13 doCheck = false; 14 15 meta = { 16 homepage = "http://docs.openstack.org/developer/pbr/"; 17 license = stdenv.lib.licenses.asl20; 18 description = "Python Build Reasonableness"; 19 }; 20}