File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
development/python-modules/rumps Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments