12 buildPythonPackage rec {
13 pname = "manifestoo-core";
19 pname = "manifestoo_core";
20 hash = "sha256-e/kpgGaaQqPI+4WeHXYpVc01t5vexHlmsDuAoGFShEM=";
23 nativeBuildInputs = [ hatch-vcs ];
25 propagatedBuildInputs =
26 lib.optionals (pythonOlder "3.7") [ importlib-resources ]
27 ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
29 passthru.updateScript = nix-update-script { };
32 description = "Library to reason about Odoo addons manifests";
33 homepage = "https://github.com/acsone/manifestoo-core";
34 license = licenses.lgpl3Only;
35 maintainers = with maintainers; [ yajo ];