poetryPlugins.poetry-plugin-up: make compatible with poetry 1.5

This commit is contained in:
Robert Schütz 2023-07-08 19:03:01 -07:00
parent 6d398316c7
commit 15d805ea11

View file

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, fetchpatch
, buildPythonPackage
, poetry-core
, pytestCheckHook
@ -19,6 +20,14 @@ buildPythonPackage rec {
hash = "sha256-QDfXgLkwh5rfyNZv0S7+cq6ubldXsbuCiTr6VYx8ZQs=";
};
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
];