Merge pull request #253594 from mirkolenz/update-poetry-plugin-up

poetry-plugin-up: 0.3.0 -> 0.4.0
This commit is contained in:
K900 2023-09-06 12:04:20 +03:00 committed by GitHub
commit 154dc02a88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
{ lib { lib
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, buildPythonPackage , buildPythonPackage
, poetry-core , poetry-core
, pytestCheckHook , pytestCheckHook
@ -10,24 +9,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "poetry-plugin-up"; pname = "poetry-plugin-up";
version = "0.3.0"; version = "0.4.0";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "MousaZeidBaker"; owner = "MousaZeidBaker";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; 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 = [ nativeBuildInputs = [
poetry-core poetry-core
]; ];