From 66ae840e93e775f7e75e4bf3e7bb2f8394f3e43f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 Sep 2023 14:05:55 +0200 Subject: [PATCH] python3Packages.clickgen: 2.1.3 -> 2.1.8 --- .../python-modules/clickgen/default.nix | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/clickgen/default.nix b/pkgs/development/python-modules/clickgen/default.nix index c4598f86d9ac..026acd33caaa 100644 --- a/pkgs/development/python-modules/clickgen/default.nix +++ b/pkgs/development/python-modules/clickgen/default.nix @@ -3,7 +3,9 @@ , buildPythonPackage , pythonOlder , fetchFromGitHub +, attrs , pillow +, pyyaml , toml , numpy , python @@ -12,7 +14,7 @@ buildPythonPackage rec { pname = "clickgen"; - version = "2.1.3"; + version = "2.1.8"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -21,19 +23,29 @@ buildPythonPackage rec { owner = "ful1e5"; repo = "clickgen"; rev = "refs/tags/v${version}"; - hash = "sha256-qDaSfIeKCbyl3C2iKz9DYQc1oNwTe5xDlGg/yYhakSw="; + hash = "sha256-74nOqaRZXLOSF4sjydAbF3sRMrw+21+fYDs3hiVSszA="; }; - propagatedBuildInputs = [ pillow toml numpy ]; + propagatedBuildInputs = [ + attrs + numpy + pillow + pyyaml + toml + ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + ]; postInstall = '' # Copying scripts directory needed by clickgen script at $out/bin/ cp -R src/clickgen/scripts $out/${python.sitePackages}/clickgen/scripts ''; - pythonImportsCheck = [ "clickgen" ]; + pythonImportsCheck = [ + "clickgen" + ]; meta = with lib; { homepage = "https://github.com/ful1e5/clickgen";