summary refs log tree commit diff
path: root/pkgs/development/python-modules/pbr
diff options
context:
space:
mode:
authorAntoine Eiche <lewo@abesis.fr>2017-03-19 01:47:35 +0100
committerAntoine Eiche <lewo@abesis.fr>2017-04-10 10:00:25 +0200
commit6eac5fd13e19503f9fc57f4db7b9796f833a88d4 (patch)
treedb642ec7c98b17f4d3346f42c93632c331b57e2b /pkgs/development/python-modules/pbr
parentec674a63720969a016091171282f9ea014e5f45a (diff)
downloadnixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar.gz
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar.bz2
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar.lz
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar.xz
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.tar.zst
nixlib-6eac5fd13e19503f9fc57f4db7b9796f833a88d4.zip
pythonPackages.pbr: 1.8.1 -> 2.0.0
Diffstat (limited to 'pkgs/development/python-modules/pbr')
-rw-r--r--pkgs/development/python-modules/pbr/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pbr/default.nix b/pkgs/development/python-modules/pbr/default.nix
new file mode 100644
index 000000000000..15c0d921ef87
--- /dev/null
+++ b/pkgs/development/python-modules/pbr/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "pbr";
+  version = "2.0.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0ccd2db529afd070df815b1521f01401d43de03941170f8a800e7531faba265d";
+  };
+
+  # circular dependencies with fixtures
+  doCheck = false;
+
+  meta = {
+    homepage = "http://docs.openstack.org/developer/pbr/";
+    license = stdenv.lib.licenses.asl20;
+    description = "Python Build Reasonableness";
+  };
+}