summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-05-22 13:27:11 -0700
committerGitHub <noreply@github.com>2022-05-22 20:27:11 +0000
commitab17708c101647f268918b7ee7e5bc6a087a4f8c (patch)
tree820932726f3b8df3a9b13bd0a45a770b3024a59f /pkgs/development
parentf1a5ae8f8d8293df8c920bb6103f8e3e2f22966b (diff)
downloadnixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar.gz
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar.bz2
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar.lz
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar.xz
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.tar.zst
nixpkgs-ab17708c101647f268918b7ee7e5bc6a087a4f8c.zip
python310Packages.python-glanceclient: 3.6.0 -> 4.0.0
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/python-glanceclient/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-glanceclient/default.nix b/pkgs/development/python-modules/python-glanceclient/default.nix
index 3d290ae5eda..f534d4968af 100644
--- a/pkgs/development/python-modules/python-glanceclient/default.nix
+++ b/pkgs/development/python-modules/python-glanceclient/default.nix
@@ -11,6 +11,7 @@
 , oslo-i18n
 , wrapt
 , pyopenssl
+, pythonOlder
 , stestr
 , testscenarios
 , ddt
@@ -19,11 +20,14 @@
 
 buildPythonApplication rec {
   pname = "python-glanceclient";
-  version = "3.6.0";
+  version = "4.0.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.8";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-gi1IYtWJL2pltoKTRy5gsHTRwHlp0GHoBMbh1UP5g9o=";
+    hash = "sha256-a3tFLmSKuaKbBQy32EkU7sPIEQtN5gaDqoGT03gka+w=";
   };
 
   postPatch = ''
@@ -54,7 +58,9 @@ buildPythonApplication rec {
     stestr run
   '';
 
-  pythonImportsCheck = [ "glanceclient" ];
+  pythonImportsCheck = [
+    "glanceclient"
+  ];
 
   meta = with lib; {
     description = "Python bindings for the OpenStack Images API";