Loading pkgs/development/python-modules/manifestoo/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { buildPythonPackage , fetchPypi , hatch-vcs , importlib-metadata , lib , manifestoo-core , nix-update-script , pytestCheckHook , pythonOlder , textual , typer , typing-extensions }: buildPythonPackage rec { pname = "manifestoo"; version = "0.7"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-gCGchc+fShBgt6fVJAx80+QnH+vxWo3jsIyePkFwhYE="; }; nativeBuildInputs = [ hatch-vcs ]; nativeCheckInputs = [ pytestCheckHook ]; propagatedBuildInputs = [ manifestoo-core textual typer ] ++ typer.passthru.optional-dependencies.all ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "A tool to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo"; license = licenses.mit; maintainers = with maintainers; [ yajo ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6101,6 +6101,8 @@ self: super: with self; { manifest-ml = callPackage ../development/python-modules/manifest-ml { }; manifestoo = callPackage ../development/python-modules/manifestoo { }; manifestoo-core = callPackage ../development/python-modules/manifestoo-core { }; manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix { }; Loading Loading
pkgs/development/python-modules/manifestoo/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { buildPythonPackage , fetchPypi , hatch-vcs , importlib-metadata , lib , manifestoo-core , nix-update-script , pytestCheckHook , pythonOlder , textual , typer , typing-extensions }: buildPythonPackage rec { pname = "manifestoo"; version = "0.7"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-gCGchc+fShBgt6fVJAx80+QnH+vxWo3jsIyePkFwhYE="; }; nativeBuildInputs = [ hatch-vcs ]; nativeCheckInputs = [ pytestCheckHook ]; propagatedBuildInputs = [ manifestoo-core textual typer ] ++ typer.passthru.optional-dependencies.all ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "A tool to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo"; license = licenses.mit; maintainers = with maintainers; [ yajo ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6101,6 +6101,8 @@ self: super: with self; { manifest-ml = callPackage ../development/python-modules/manifest-ml { }; manifestoo = callPackage ../development/python-modules/manifestoo { }; manifestoo-core = callPackage ../development/python-modules/manifestoo-core { }; manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix { }; Loading