python3Packages.scim2-filter-parser: 0.5.0 -> 0.7.0

This commit is contained in:
Jan van Brügge
2024-12-24 07:52:21 +00:00
parent e49c559979
commit c831bc2a8b
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "scim2-filter-parser";
version = "0.5.0";
format = "pyproject";
version = "0.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "15five";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-QEPTYpWlRPWO6Evyt4zoqUST4ousF67GmiOpD7WUqcI=";
hash = "sha256-KmtOtI/5HT0lVwvXQFTlEwMeptoa4cA5hTSgSULxhIc=";
};
patches = [
@@ -31,14 +31,14 @@ buildPythonPackage rec {
})
];
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace "poetry.masonry.api" "poetry.core.masonry.api"
'';
propagatedBuildInputs = [ sly ];
dependencies = [ sly ];
optional-dependencies = {
django-query = [ django ];