summary refs log tree commit diff
path: root/pkgs/development/python-modules/stevedore
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-30 06:29:44 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-09-30 06:29:44 -0700
commit432ba5105b257e401f214fa6ae6d60a5e6c38962 (patch)
treef39f74c05170df148c633caccddcdc74466113e9 /pkgs/development/python-modules/stevedore
parent475e88a6fbdcb16fcafd035c7dac27a06fc57bd3 (diff)
downloadnixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar.gz
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar.bz2
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar.lz
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar.xz
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.tar.zst
nixpkgs-432ba5105b257e401f214fa6ae6d60a5e6c38962.zip
pythonPackages.stevedore: 1.30.1 -> 1.31.0
Diffstat (limited to 'pkgs/development/python-modules/stevedore')
-rw-r--r--pkgs/development/python-modules/stevedore/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix
index e7f8be7b469..2e3071ed29c 100644
--- a/pkgs/development/python-modules/stevedore/default.nix
+++ b/pkgs/development/python-modules/stevedore/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, buildPythonPackage, fetchPypi, pbr, six }:
+{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }:
 
 buildPythonPackage rec {
   pname = "stevedore";
-  version = "1.30.1";
+  version = "1.31.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1860zslirsqskc2iifljxcyly28zqgjpmkm7k3bj6zyqagzriq3v";
+    sha256 = "054apq55yg7058pmbnyc8jhrcpi9clmi0sm7znhwg0d676brywz0";
   };
 
   doCheck = false;
 
-  propagatedBuildInputs = [ pbr six ];
+  propagatedBuildInputs = [ pbr setuptools six ];
 
   meta = with stdenv.lib; {
     description = "Manage dynamic plugins for Python applications";