about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zipp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/zipp/default.nix')
-rw-r--r--pkgs/development/python-modules/zipp/default.nix76
1 files changed, 39 insertions, 37 deletions
diff --git a/pkgs/development/python-modules/zipp/default.nix b/pkgs/development/python-modules/zipp/default.nix
index 6555d172ce2e1..9a8729f7515d6 100644
--- a/pkgs/development/python-modules/zipp/default.nix
+++ b/pkgs/development/python-modules/zipp/default.nix
@@ -1,48 +1,50 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, func-timeout
-, jaraco-itertools
-, pythonOlder
-, setuptools-scm
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  func-timeout,
+  jaraco-itertools,
+  pythonOlder,
+  setuptools-scm,
 }:
 
-let zipp = buildPythonPackage rec {
-  pname = "zipp";
-  version = "3.17.0";
-  format = "pyproject";
+let
+  zipp = buildPythonPackage rec {
+    pname = "zipp";
+    version = "3.18.1";
+    format = "pyproject";
 
-  disabled = pythonOlder "3.7";
+    disabled = pythonOlder "3.7";
 
-  src = fetchPypi {
-    inherit pname version;
-    hash = "sha256-hOZKHCjPfpHtIHi7jMjCWcsZt2lCCWyNe4SUdpDKuvA=";
-  };
+    src = fetchPypi {
+      inherit pname version;
+      hash = "sha256-KITtIufYlh3hyaBRQutpokfxICkbwCBqAKdkLwm1txU=";
+    };
 
-  nativeBuildInputs = [
-    setuptools-scm
-  ];
+    nativeBuildInputs = [ setuptools-scm ];
 
-  # Prevent infinite recursion with pytest
-  doCheck = false;
+    # Prevent infinite recursion with pytest
+    doCheck = false;
 
-  nativeCheckInputs = [
-    func-timeout
-    jaraco-itertools
-  ];
+    nativeCheckInputs = [
+      func-timeout
+      jaraco-itertools
+    ];
 
-  pythonImportsCheck = [
-    "zipp"
-  ];
+    pythonImportsCheck = [ "zipp" ];
 
-  passthru.tests = {
-    check = zipp.overridePythonAttrs (_: { doCheck = true; });
-  };
+    passthru.tests = {
+      check = zipp.overridePythonAttrs (_: {
+        doCheck = true;
+      });
+    };
 
-  meta = with lib; {
-    description = "Pathlib-compatible object wrapper for zip files";
-    homepage = "https://github.com/jaraco/zipp";
-    license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    meta = with lib; {
+      description = "Pathlib-compatible object wrapper for zip files";
+      homepage = "https://github.com/jaraco/zipp";
+      license = licenses.mit;
+      maintainers = with maintainers; [ ];
+    };
   };
-}; in zipp
+in
+zipp