1{
2 buildPythonPackage,
3 fetchPypi,
4 hatch-vcs,
5 lib,
6 manifestoo-core,
7 nix-update-script,
8 pytestCheckHook,
9 textual,
10 typer,
11}:
12
13buildPythonPackage rec {
14 pname = "manifestoo";
15 version = "1.1";
16 format = "pyproject";
17
18 src = fetchPypi {
19 inherit pname version;
20 hash = "sha256-WDfktW8jxh3blr0BH2p6z/Pl6VkQuLqiC5+akYnhaV4=";
21 };
22
23 nativeBuildInputs = [ hatch-vcs ];
24
25 nativeCheckInputs = [ pytestCheckHook ];
26
27 propagatedBuildInputs = [
28 manifestoo-core
29 textual
30 typer
31 ];
32
33 passthru.updateScript = nix-update-script { };
34
35 meta = with lib; {
36 description = "Tool to reason about Odoo addons manifests";
37 homepage = "https://github.com/acsone/manifestoo";
38 license = licenses.mit;
39 maintainers = with maintainers; [ yajo ];
40 };
41}