1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/pbr/default.nix

21 lines
467 B
Nix
Raw Normal View History

2017-03-19 00:47:35 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pbr";
2019-10-24 07:47:41 +01:00
version = "5.4.3";
2017-03-19 00:47:35 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:41 +01:00
sha256 = "2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8";
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";
};
}