icnsutil: pull from the Python package set

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
This commit is contained in:
Randy Eckenrode 2022-02-28 18:07:29 -05:00
parent 67763c6f59
commit 1f59c76c66
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -1,9 +1,10 @@
{ lib
, python3
, python
, fetchFromGitHub
, buildPythonPackage
}:
python3.pkgs.buildPythonPackage rec {
buildPythonPackage rec {
pname = "icnsutil";
version = "1.0.1";
@ -17,8 +18,8 @@ python3.pkgs.buildPythonPackage rec {
doCheck = true;
checkPhase = ''
${python3.interpreter} tests/test_icnsutil.py
${python3.interpreter} tests/test_cli.py
${python.interpreter} tests/test_icnsutil.py
${python.interpreter} tests/test_cli.py
'';
meta = {