Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchFromGitHub }: 2 3buildPythonPackage rec { 4 pname = "skytemple-icons"; 5 version = "1.3.2"; 6 7 src = fetchFromGitHub { 8 owner = "SkyTemple"; 9 repo = pname; 10 rev = version; 11 sha256 = "0wagdvzks9irdl5lj8sfqkkvfwwmdpvjyzx6424shvpp5mk28dcv"; 12 }; 13 14 doCheck = false; # there are no tests 15 pythonImportsCheck = [ "skytemple_icons" ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/SkyTemple/skytemple-icons"; 19 description = "Icons for SkyTemple"; 20 license = licenses.gpl3Plus; 21 maintainers = with maintainers; [ xfix ]; 22 }; 23}