16 buildPythonPackage rec {
19 format = "setuptools";
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
27 hash = "sha256-yFEkE1VyeHBuebpsumc6CTvv2kpAw7XAWlyUlXibqz0=";
30 propagatedBuildInputs = [
38 nativeCheckInputs = [ pytestCheckHook ];
41 # Copying scripts directory needed by clickgen script at $out/bin/
42 cp -R src/clickgen/scripts $out/${python.sitePackages}/clickgen/scripts
45 pythonImportsCheck = [ "clickgen" ];
48 homepage = "https://github.com/ful1e5/clickgen";
49 description = "Hassle-free cursor building toolbox";
51 clickgen is API for building X11 and Windows Cursors from
52 .png files. clickgen is using anicursorgen and xcursorgen under the hood.
54 license = licenses.mit;
55 maintainers = with maintainers; [ AdsonCicilioti ];
57 # ld: unknown option: -zdefs
58 broken = stdenv.hostPlatform.isDarwin;