about summary refs log tree commit diff
path: root/pkgs/tools/package-management
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-09-06 12:01:43 +0000
committerGitHub <noreply@github.com>2023-09-06 12:01:43 +0000
commit0ade538ea045f69aaf4c037bf304f08e9037bed7 (patch)
tree2d580a8dd93385894a4f6ac02962fe45136400e4 /pkgs/tools/package-management
parentf732e2cbb103ed6ee4f3c56ace18b16b31e9cf7a (diff)
parent7e104702317d595229de50d1919fce718fb2ace3 (diff)
downloadnixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar.gz
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar.bz2
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar.lz
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar.xz
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.tar.zst
nixlib-0ade538ea045f69aaf4c037bf304f08e9037bed7.zip
Merge staging-next into staging
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 ab00788facc3..b9ac5d4ada01 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
   ];