about summary refs log tree commit diff
path: root/pkgs/tools/package-management
diff options
context:
space:
mode:
authorMirko Lenz <mirko@mirkolenz.com>2023-09-06 10:26:17 +0200
committerMirko Lenz <mirko@mirkolenz.com>2023-09-06 10:26:17 +0200
commit9d41dca193605a6189e2d52214361c4ed8c13204 (patch)
tree7165ff708c77c612609a636ae1d59bcb3d978069 /pkgs/tools/package-management
parent0bffda19b8af722f8069d09d8b6a24594c80b352 (diff)
poetry-plugin-up: 0.3.0 -> 0.4.0
Diffstat (limited to 'pkgs/tools/package-management')
-rw-r--r--pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix b/pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix
index ab00788facc30..b9ac5d4ada01f 100644
--- a/pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix
+++ b/pkgs/tools/package-management/poetry/plugins/poetry-plugin-up.nix
@@ -1,6 +1,5 @@
 { lib
 , fetchFromGitHub
-, fetchpatch
 , buildPythonPackage
 , poetry-core
 , pytestCheckHook
@@ -10,24 +9,16 @@
 
 buildPythonPackage rec {
   pname = "poetry-plugin-up";
-  version = "0.3.0";
+  version = "0.4.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "MousaZeidBaker";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-QDfXgLkwh5rfyNZv0S7+cq6ubldXsbuCiTr6VYx8ZQs=";
+    hash = "sha256-ENw+6DdQkRLnAlIuIEdZzIsFP7ILqA9WatlVZYNJSxw=";
   };
 
-  patches = [
-    # https://github.com/MousaZeidBaker/poetry-plugin-up/pull/24
-    (fetchpatch {
-      url = "https://github.com/MousaZeidBaker/poetry-plugin-up/commit/31d78c547896efd27c2be0956a982638f32b07f8.patch";
-      hash = "sha256-CkZgX/ES+VkfxBofxWeparXNjsdP4qcQ1I32zaBBmWo=";
-    })
-  ];
-
   nativeBuildInputs = [
     poetry-core
   ];