about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-28 18:29:23 -0500
committerGitHub <noreply@github.com>2024-03-28 18:29:23 -0500
commitafaad87041d86bf6a13c881db7a79f76e42bfc32 (patch)
treebae566a2e5fbd94a847837ac62ea5da9e4b78e3a
parent789b419d651267f052f08096e713be0924193c87 (diff)
parentc0bbfae6abec59b7c27b8923c03b83209022e66a (diff)
downloadnixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar.gz
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar.bz2
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar.lz
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar.xz
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.tar.zst
nixlib-afaad87041d86bf6a13c881db7a79f76e42bfc32.zip
Merge pull request #299528 from r-ryantm/auto-update/python312Packages.hcloud
python312Packages.hcloud: 1.33.2 -> 1.34.0
-rw-r--r--pkgs/development/python-modules/hcloud/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/hcloud/default.nix b/pkgs/development/python-modules/hcloud/default.nix
index 86f3537a732e..6212c4f0cc5a 100644
--- a/pkgs/development/python-modules/hcloud/default.nix
+++ b/pkgs/development/python-modules/hcloud/default.nix
@@ -7,21 +7,26 @@
 , python-dateutil
 , pythonOlder
 , requests
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "hcloud";
-  version = "1.33.2";
-  format = "setuptools";
+  version = "1.34.0";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-GCiw+HbN/0na2fiAS16On72nj09VR0Naw6wwCIQ4zl8=";
+    hash = "sha256-8hwr0K+6nLgAVMhXb/08CS7HrlLYQ/SV0K8MWH/PQk0=";
   };
 
-  propagatedBuildInputs = [
+  build-system = [
+    setuptools
+  ];
+
+  dependencies = [
     future
     requests
     python-dateutil