Skip to content

Commit

Permalink
python313Packages.kivy-garden-modernmenu: init at 0-unstable-2019-12-10
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank committed Jan 8, 2025
1 parent 462ef7a commit b6c88e8
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/development/python-modules/kivy-garden-modernmenu/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
kivy,
}:

buildPythonPackage {
pname = "kivy-garden-modernmenu";
version = "0-unstable-2019-12-10";
pyproject = true;

src = fetchFromGitHub {
owner = "kivy-garden";
repo = "modernmenu";
rev = "681c3bf68b9ce2ebe653c2e6a9fcd2407bfe3e00";
hash = "sha256-0d4UhmRtuYwnYoZajjExavlvqkhGamiEQ8GjHWYnO88=";
};

strictDeps = true;

build-system = [
setuptools
];

checkInputs = [
kivy
];

pythonImportsCheck = [
"kivy_garden.modernmenu"
];

preInstallCheck = ''
export HOME=$PWD
'';

meta = {
description = "Stylized menu system for Kivy";
homepage = "https://github.com/kivy-garden/modernmenu";
license = lib.licenses.mit;
maintainers = lib.teams.ngi.members;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7000,6 +7000,8 @@ self: super: with self; {

kivy-garden = callPackage ../development/python-modules/kivy-garden { };

kivy-garden-modernmenu = callPackage ../development/python-modules/kivy-garden-modernmenu { };

kiwiki-client = callPackage ../development/python-modules/kiwiki-client { };

kiwisolver = callPackage ../development/python-modules/kiwisolver { };
Expand Down

0 comments on commit b6c88e8

Please sign in to comment.