My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/skytemple-icons/default.nix

23 lines
584 B

{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "skytemple-icons";
version = "1.3.2";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
sha256 = "0wagdvzks9irdl5lj8sfqkkvfwwmdpvjyzx6424shvpp5mk28dcv";
};
doCheck = false; # there are no tests
pythonImportsCheck = [ "skytemple_icons" ];
meta = with lib; {
homepage = "https://github.com/SkyTemple/skytemple-icons";
description = "Icons for SkyTemple";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xfix ];
};
}