mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 20:53:22 +00:00
icnsutil: include pillow dependency
pillow is neccessary for `icnsutil convert` to work
This commit is contained in:
parent
d9b7db22c1
commit
059ac8281d
@ -4,6 +4,7 @@
|
||||
fetchFromGitHub,
|
||||
python,
|
||||
pythonOlder,
|
||||
pillow,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -20,6 +21,8 @@ buildPythonPackage rec {
|
||||
hash = "sha256-tiq8h6s2noWLBIOIWcj8jfSqJFN01ee2uoHN4aFwn7s=";
|
||||
};
|
||||
|
||||
dependencies = [ pillow ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} tests/test_icnsutil.py
|
||||
${python.interpreter} tests/test_cli.py
|
||||
|
Loading…
Reference in New Issue
Block a user