159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
49 lines
980 B
Nix
49 lines
980 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
git,
|
|
hatch-vcs,
|
|
lib,
|
|
manifestoo-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
tomli,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "whool";
|
|
version = "1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sbidoul";
|
|
repo = "whool";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-uIHtygDeFbtIZLn0YwGzAHD7B+EZQ3JAovuNMZ5YMxc=";
|
|
};
|
|
|
|
build-system = [ hatch-vcs ];
|
|
|
|
dependencies = [
|
|
manifestoo-core
|
|
wheel
|
|
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
pythonImportsCheck = [ "whool" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
git
|
|
];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = {
|
|
description = "Standards-compliant Python build backend to package Odoo addons";
|
|
homepage = "https://github.com/sbidoul/whool";
|
|
changelog = "https://github.com/sbidoul/whool/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.yajo ];
|
|
};
|
|
}
|