blob: 0e9749b981dd83e9bcddfce721251930936aec94 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
pyobjc-framework-Cocoa,
setuptools,
}:
buildPythonPackage {
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 ];
};
}
|