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

  src = fetchPypi {
    inherit pname version;
    sha256 = "5fad80b613c402d5b7df7bd84812548b2a61e9977387a80a5fc5c396492b13c9";
  };

  # circular dependencies with fixtures
  doCheck = false;

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