about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-08 02:42:31 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 18:24:54 +0100
commit9c629797977f09728eaeab9ac4c8493250fc1b5b (patch)
tree81bf39183ccb6bca7717ddb5aa0a182da8cdebaf /pkgs
parentc03213e24c5689d376f33862758d3b289a1b4900 (diff)
python3Packages.shortuuid: 1.0.11 -> 1.0.12
https://github.com/skorokithakis/shortuuid/blob/v1.0.12/CHANGELOG.md
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/shortuuid/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/shortuuid/default.nix b/pkgs/development/python-modules/shortuuid/default.nix
index fda1e1896a504..c9fc97b8304e1 100644
--- a/pkgs/development/python-modules/shortuuid/default.nix
+++ b/pkgs/development/python-modules/shortuuid/default.nix
@@ -1,22 +1,27 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, poetry-core
 , pytestCheckHook
 , pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "shortuuid";
-  version = "1.0.11";
-  format = "setuptools";
+  version = "1.0.12";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-/HXyYVkUgVqOTLFQGzpRN0XLZu8P1fxvufjD+jSB94k=";
+    hash = "sha256-w58bNIs8HpsRWpVLM7dsjFItLRd6nSCs27INJPrDzP0=";
   };
 
+  build-system = [
+    poetry-core
+  ];
+
   nativeCheckInputs = [
     pytestCheckHook
   ];