10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-tiq8h6s2noWLBIOIWcj8jfSqJFN01ee2uoHN4aFwn7s=";
24 dependencies = [ pillow ];
27 ${python.interpreter} tests/test_icnsutil.py
28 ${python.interpreter} tests/test_cli.py
31 pythonImportsCheck = [ "icnsutil" ];
34 description = "Create and extract .icns files";
35 homepage = "https://github.com/relikd/icnsutil";
36 changelog = "https://github.com/relikd/icnsutil/releases/tag/v${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ reckenrode ];