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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "42df03e7797b796625b1029c0400279c7c34fd7df24a7d7818a1abb5b38710dd";
  };

  # circular dependencies with fixtures
  doCheck = false;

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