Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pbr / default.nix
blob6b204a946b3a7136ea50b5e0f6e8b9951c6fd998
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "pbr";
5   version = "5.5.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "5fad80b613c402d5b7df7bd84812548b2a61e9977387a80a5fc5c396492b13c9";
10   };
12   # circular dependencies with fixtures
13   doCheck = false;
15   meta = with lib; {
16     homepage = "http://docs.openstack.org/developer/pbr/";
17     license = licenses.asl20;
18     description = "Python Build Reasonableness";
19   };