depot/third_party/nixpkgs/pkgs/development/python-modules/hatch-odoo/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

40 lines
789 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
manifestoo-core,
pythonOlder,
tomli,
}:
buildPythonPackage rec {
pname = "hatch-odoo";
version = "1.0.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "acsone";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-I3jaiG0Xu8B34q30p7zTs+FeBXUQiPKTAJLSVxE9gYE=";
};
buildInputs = [hatch-vcs];
propagatedBuildInputs =
[
hatchling
manifestoo-core
]
++ lib.optionals (pythonOlder "3.11") [
tomli
];
meta = with lib; {
description = "A hatch plugin to develop and package Odoo projects";
homepage = "https://github.com/acsone/hatch-odoo";
license = licenses.mit;
maintainers = with maintainers; [yajo];
};
}