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