python3.pkgs.scim2-filter-parser: replace poetry with poetry-core

This commit is contained in:
Theodore Ni 2023-08-23 14:34:06 -07:00
parent 87239a023b
commit 24fcb50419
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, poetry-core
, django
, sly
@ -20,6 +21,15 @@ buildPythonPackage rec {
hash = "sha256-QEPTYpWlRPWO6Evyt4zoqUST4ousF67GmiOpD7WUqcI=";
};
patches = [
# https://github.com/15five/scim2-filter-parser/pull/43
(fetchpatch {
name = "replace-poetry-with-poetry-core.patch";
url = "https://github.com/15five/scim2-filter-parser/commit/675d85f3a3ff338e96a408827d64d9e893fa5255.patch";
hash = "sha256-PjJH1S5CDe/BMI0+mB34KdpNNcHfexBFYBmHolsWH4o=";
})
];
nativeBuildInputs = [
poetry-core
];