mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python3Packages.skytemple-icons: init at 1.2.0
This commit is contained in:
parent
8a395dec82
commit
845ba2eeef
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/skytemple-icons/default.nix
Normal file
23
pkgs/development/python-modules/skytemple-icons/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "skytemple-icons";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SkyTemple";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "036bxy0n3p0ivcdaymj11z0nw555xjxxj15ja0rpjsvq1mqamd80";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -7691,6 +7691,8 @@ in {
|
|||
|
||||
skybellpy = callPackage ../development/python-modules/skybellpy { };
|
||||
|
||||
skytemple-icons = callPackage ../development/python-modules/skytemple-icons { };
|
||||
|
||||
slack-sdk = callPackage ../development/python-modules/slack-sdk { };
|
||||
|
||||
slackclient = callPackage ../development/python-modules/slackclient { };
|
||||
|
|
Loading…
Reference in a new issue