nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 20 lines 467 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pbr"; 5 version = "5.4.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "139d2625547dbfa5fb0b81daebb39601c478c21956dc57e2e07b74450a8c506b"; 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}