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