vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / python-modules / manifestoo / default.nix
blob14f81fdf2cdfb2b6092ae437e356c96543f9079a
2   buildPythonPackage,
3   fetchPypi,
4   hatch-vcs,
5   lib,
6   manifestoo-core,
7   nix-update-script,
8   pytestCheckHook,
9   textual,
10   typer,
13 buildPythonPackage rec {
14   pname = "manifestoo";
15   version = "1.0";
16   format = "pyproject";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-iP9QVyAvKMTo8GuceiXWALmWKQ9yLX2qxl0S7IT+kMA=";
21   };
23   nativeBuildInputs = [ hatch-vcs ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   propagatedBuildInputs = [
28     manifestoo-core
29     textual
30     typer
31   ];
33   passthru.updateScript = nix-update-script { };
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   };