python3Packages.scim2-filter-parser: init at 0.4.0

This commit is contained in:
s1341
2023-01-01 17:22:05 +02:00
parent df385f8ab7
commit 4c24f62648
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{ stdenv, lib, fetchFromGitHub, buildPythonPackage, unittestCheckHook
, pytest-runner, django
, sly }:
buildPythonPackage rec {
pname = "scim2-filter-parser";
version = "0.4.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "15five";
repo = pname;
# gets rarely updated, we can then just replace the hash
rev = "refs/tags/${version}";
hash = "sha256-ZemR5tn+T9WWgNB1FYrPJO6zh8g9zjobFZemi+MHkEE=";
};
propagatedBuildInputs = [
sly
];
pythonImportsCheck = [
"scim2_filter_parser"
];
checkInputs = [
django
pytest-runner
unittestCheckHook
];
meta = with lib; {
description = "A customizable parser/transpiler for SCIM2.0 filters";
homepage = "https://github.com/15five/scim2-filter-parser";
license = licenses.mit;
maintainers = with maintainers; [ s1341 ];
};
}
+2
View File
@@ -10091,6 +10091,8 @@ self: super: with self; {
schwifty = callPackage ../development/python-modules/schwifty { };
scim2-filter-parser = callPackage ../development/python-modules/scim2-filter-parser { };
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
scikit-build = callPackage ../development/python-modules/scikit-build { };