diff options
Diffstat (limited to 'pkgs/development/python-modules/clickgen/default.nix')
-rw-r--r-- | pkgs/development/python-modules/clickgen/default.nix | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/clickgen/default.nix b/pkgs/development/python-modules/clickgen/default.nix index b37c6382a821..a8109184f251 100644 --- a/pkgs/development/python-modules/clickgen/default.nix +++ b/pkgs/development/python-modules/clickgen/default.nix @@ -1,20 +1,21 @@ -{ lib -, stdenv -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, attrs -, pillow -, toml -, numpy -, pyyaml -, python -, pytestCheckHook +{ + lib, + stdenv, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + attrs, + pillow, + toml, + numpy, + pyyaml, + python, + pytestCheckHook, }: buildPythonPackage rec { pname = "clickgen"; - version = "2.2.2"; + version = "2.2.5"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -23,7 +24,7 @@ buildPythonPackage rec { owner = "ful1e5"; repo = "clickgen"; rev = "refs/tags/v${version}"; - hash = "sha256-Lsb0FvJohwsXofpcq7OgWfhl/3qVxAqY0wdvum6ywSQ="; + hash = "sha256-yFEkE1VyeHBuebpsumc6CTvv2kpAw7XAWlyUlXibqz0="; }; propagatedBuildInputs = [ @@ -34,9 +35,7 @@ buildPythonPackage rec { toml ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; postInstall = '' # Copying scripts directory needed by clickgen script at $out/bin/ @@ -47,7 +46,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://github.com/ful1e5/clickgen"; - description = "The hassle-free cursor building toolbox"; + description = "Hassle-free cursor building toolbox"; longDescription = '' clickgen is API for building X11 and Windows Cursors from .png files. clickgen is using anicursorgen and xcursorgen under the hood. @@ -56,6 +55,6 @@ buildPythonPackage rec { maintainers = with maintainers; [ AdsonCicilioti ]; # fails with: # ld: unknown option: -zdefs - broken = stdenv.isDarwin; + broken = stdenv.hostPlatform.isDarwin; }; } |