python3Packages.scim2-server: init at 0.1.2
This commit is contained in:
parent
f179ad8ca7
commit
bf580ab213
49
pkgs/development/python-modules/scim2-server/default.nix
Normal file
49
pkgs/development/python-modules/scim2-server/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
hatchling,
|
||||||
|
scim2-filter-parser,
|
||||||
|
scim2-models,
|
||||||
|
werkzeug,
|
||||||
|
pytestCheckHook,
|
||||||
|
httpx,
|
||||||
|
time-machine,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "scim2-server";
|
||||||
|
version = "0.1.2";
|
||||||
|
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "scim2_server";
|
||||||
|
hash = "sha256-6MHQVo0vqJ/69iBz3GtH1f2YO/Vh/MORSkEETwy/9pE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
scim2-filter-parser
|
||||||
|
scim2-models
|
||||||
|
werkzeug
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
httpx
|
||||||
|
time-machine
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "scim2_server" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Lightweight SCIM2 server prototype";
|
||||||
|
homepage = "https://github.com/python-scim/scim2-server";
|
||||||
|
changelog = "https://github.com/python-scim/scim2-server/releases/tag/${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ erictapen ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -14530,6 +14530,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
scim2-models = callPackage ../development/python-modules/scim2-models { };
|
scim2-models = callPackage ../development/python-modules/scim2-models { };
|
||||||
|
|
||||||
|
scim2-server = callPackage ../development/python-modules/scim2-server { };
|
||||||
|
|
||||||
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
||||||
|
|
||||||
scikit-build = callPackage ../development/python-modules/scikit-build { };
|
scikit-build = callPackage ../development/python-modules/scikit-build { };
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user