Commit f4305e60 authored by Samuel Ainsworth's avatar Samuel Ainsworth
Browse files

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

parent a2431394
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };