about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pbr/default.nix
blob: 5e0be5fb62b05a15b9f55dae58c655e18f6c3e1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pbr";
  version = "5.4.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "07f558fece33b05caf857474a366dfcc00562bca13dd8b47b2b3e22d9f9bf55c";
  };

  # circular dependencies with fixtures
  doCheck = false;

  meta = {
    homepage = "http://docs.openstack.org/developer/pbr/";
    license = stdenv.lib.licenses.asl20;
    description = "Python Build Reasonableness";
  };
}