075e8c2c4f
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
36 lines
718 B
Nix
36 lines
718 B
Nix
{
|
|
buildPythonPackage,
|
|
click,
|
|
fetchFromGitHub,
|
|
lib,
|
|
nix-update-script,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-odoo";
|
|
version = "1.8.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acsone";
|
|
repo = "click-odoo";
|
|
tag = version;
|
|
hash = "sha256-dUTAu02iSA0YvF/nQYOyb5gzbT8zMedXXwU7yONBrl4=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
dependencies = [ click ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Odoo scripting helper library";
|
|
mainProgram = "click-odoo";
|
|
homepage = "https://github.com/acsone/click-odoo";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ yajo ];
|
|
};
|
|
}
|