about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2023-09-01 14:18:21 -0400
committerBen Wolsieffer <benwolsieffer@gmail.com>2023-09-25 21:33:57 -0400
commit1068053205f6fec8be64d5f45781f51977537fc1 (patch)
tree714e87c2c2d720dfcf3d463120b8812c5e9c1cee
parentcfce6560db86b1690477b8e769084ceab55c0d66 (diff)
python3Packages.argon2-cffi: 21.3.0 -> 23.1.0
Upstream has switched from flit to hatch.
-rw-r--r--pkgs/development/python-modules/argon2-cffi/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/argon2-cffi/default.nix b/pkgs/development/python-modules/argon2-cffi/default.nix
index d3c1d28ae7e55..7b7446641b4b5 100644
--- a/pkgs/development/python-modules/argon2-cffi/default.nix
+++ b/pkgs/development/python-modules/argon2-cffi/default.nix
@@ -2,25 +2,25 @@
 , pytest
 , buildPythonPackage
 , fetchPypi
-, flit-core
 , lib
-, stdenv
+, hatchling
+, hatch-vcs
+, hatch-fancy-pypi-readme
 , argon2-cffi-bindings
 }:
 
 buildPythonPackage rec {
   pname = "argon2-cffi";
-  version = "21.3.0";
+  version = "23.1.0";
   format = "pyproject";
 
   src = fetchPypi {
-    inherit pname version;
-    sha256 = "d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b";
+    pname = "argon2_cffi";
+    inherit version;
+    hash = "sha256-h5w+eaJynOdo67fTbUYJ46eKTKLsOp8SKGygV+PQ2wg=";
   };
 
-  nativeBuildInputs = [
-    flit-core
-  ];
+  nativeBuildInputs = [ hatchling hatch-vcs hatch-fancy-pypi-readme ];
 
   propagatedBuildInputs = [ argon2-cffi-bindings ];