about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pbr/default.nix
blob: 4180d1069e498a5061579f3851bafaf6544d370e (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.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "139d2625547dbfa5fb0b81daebb39601c478c21956dc57e2e07b74450a8c506b";
  };

  # circular dependencies with fixtures
  doCheck = false;

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