Files
nixpkgs/pkgs/development/python-modules/scim2-models/default.nix
Martin Weinelt f48e3d601f python3Packages.scim2-models: 0.3.5 -> 0.4.1
https://github.com/python-scim/scim2-models/releases/tag/0.4.1

This commit was automatically generated using update-python-libraries.
2025-08-09 19:04:10 +02:00

41 lines
903 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
hatchling,
pydantic,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "scim2-models";
version = "0.4.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit version;
pname = "scim2_models";
hash = "sha256-SRUPO67otfZsrdjGQyTul5vIrYRU2WFaL0fvAtVd/1c=";
};
build-system = [ hatchling ];
dependencies = [ pydantic ] ++ pydantic.optional-dependencies.email;
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "scim2_models" ];
meta = with lib; {
description = "SCIM2 models serialization and validation with pydantic";
homepage = "https://github.com/python-scim/scim2-models";
changelog = "https://github.com/python-scim/scim2-models/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ erictapen ];
};
}