Files
nixpkgs/pkgs/development/python-modules/manifestoo-core/default.nix
T
Martin Weinelt e778ec435a python3Packages.manifestoo-core: 1.9 -> 1.10
This commit was automatically generated using update-python-libraries.
2025-08-09 19:01:41 +02:00

38 lines
860 B
Nix

{
buildPythonPackage,
typing-extensions,
fetchPypi,
lib,
nix-update-script,
hatch-vcs,
pythonOlder,
importlib-resources,
}:
buildPythonPackage rec {
pname = "manifestoo-core";
version = "1.10";
format = "pyproject";
src = fetchPypi {
inherit version;
pname = "manifestoo_core";
hash = "sha256-LLxr96/cuAAncddMeBBVlFq2Hl5+pNXqgMbvbnfzcE8=";
};
nativeBuildInputs = [ hatch-vcs ];
propagatedBuildInputs =
lib.optionals (pythonOlder "3.7") [ importlib-resources ]
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Library to reason about Odoo addons manifests";
homepage = "https://github.com/acsone/manifestoo-core";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ yajo ];
};
}