nixpkgs/pkgs/development/python-modules/pbr/default.nix

21 lines
469 B
Nix
Raw Normal View History

2017-03-19 00:47:35 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pbr";
2020-11-29 14:04:35 +00:00
version = "5.5.1";
2017-03-19 00:47:35 +00:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:35 +00:00
sha256 = "5fad80b613c402d5b7df7bd84812548b2a61e9977387a80a5fc5c396492b13c9";
2017-03-19 00:47:35 +00:00
};
# circular dependencies with fixtures
doCheck = false;
meta = {
homepage = "http://docs.openstack.org/developer/pbr/";
2017-03-19 00:47:35 +00:00
license = stdenv.lib.licenses.asl20;
description = "Python Build Reasonableness";
};
}