python3Packages.rumps: init at unstable-2025-02-02

This commit is contained in:
Samuel Ainsworth
2025-02-03 13:44:20 -05:00
parent a24313946d
commit f4305e605c
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,33 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pyobjc-framework-Cocoa,
setuptools,
}:
buildPythonPackage rec {
pname = "rumps";
version = "unstable-2025-02-02";
pyproject = true;
src = fetchFromGitHub {
owner = "jaredks";
repo = "rumps";
rev = "8730e7cff5768dfabecff478c0d5e3688862c1c6";
hash = "sha256-oNJBpRaCGyOKCgBueRx4YhpNW1OnbIEWEEvlGfyoxUA=";
};
build-system = [ setuptools ];
dependencies = [ pyobjc-framework-Cocoa ];
pythonImportsCheck = [ "rumps" ];
meta = with lib; {
description = "Ridiculously Uncomplicated macOS Python Statusbar apps";
homepage = "https://github.com/jaredks/rumps";
license = licenses.bsd2;
platforms = platforms.darwin;
maintainers = with maintainers; [ samuela ];
};
}
+2
View File
@@ -14441,6 +14441,8 @@ self: super: with self; {
rules = callPackage ../development/python-modules/rules { };
rumps = callPackage ../development/python-modules/rumps { };
runs = callPackage ../development/python-modules/runs { };
runstats = callPackage ../development/python-modules/runstats { };