Skip to content

Commit f4305e6

Browse files
committed
python3Packages.rumps: init at unstable-2025-02-02
1 parent a243139 commit f4305e6

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
buildPythonPackage,
3+
fetchFromGitHub,
4+
lib,
5+
pyobjc-framework-Cocoa,
6+
setuptools,
7+
}:
8+
9+
buildPythonPackage rec {
10+
pname = "rumps";
11+
version = "unstable-2025-02-02";
12+
pyproject = true;
13+
14+
src = fetchFromGitHub {
15+
owner = "jaredks";
16+
repo = "rumps";
17+
rev = "8730e7cff5768dfabecff478c0d5e3688862c1c6";
18+
hash = "sha256-oNJBpRaCGyOKCgBueRx4YhpNW1OnbIEWEEvlGfyoxUA=";
19+
};
20+
21+
build-system = [ setuptools ];
22+
dependencies = [ pyobjc-framework-Cocoa ];
23+
24+
pythonImportsCheck = [ "rumps" ];
25+
26+
meta = with lib; {
27+
description = "Ridiculously Uncomplicated macOS Python Statusbar apps";
28+
homepage = "https://github.com/jaredks/rumps";
29+
license = licenses.bsd2;
30+
platforms = platforms.darwin;
31+
maintainers = with maintainers; [ samuela ];
32+
};
33+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14441,6 +14441,8 @@ self: super: with self; {
1444114441

1444214442
rules = callPackage ../development/python-modules/rules { };
1444314443

14444+
rumps = callPackage ../development/python-modules/rumps { };
14445+
1444414446
runs = callPackage ../development/python-modules/runs { };
1444514447

1444614448
runstats = callPackage ../development/python-modules/runstats { };

0 commit comments

Comments
 (0)