Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 467 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pbr"; 5 version = "5.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d717573351cfe09f49df61906cd272abaa759b3e91744396b804965ff7bff38b"; 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}