depot/third_party/nixpkgs/pkgs/development/python-modules/desktop-notifier/default.nix

53 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, stdenv
, packaging
, setuptools
, dbus-next
, rubicon-objc
}:
buildPythonPackage rec {
pname = "desktop-notifier";
version = "4.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "SamSchott";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-6FtxfY0vjCbCueeXdAXOy6XSjne4I7brQ5OvJ+Q1KsQ=";
};
build-system = [
setuptools
];
dependencies = [
packaging
] ++ lib.optionals stdenv.isLinux [
dbus-next
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
rubicon-objc
];
# no tests available, do the imports check instead
doCheck = false;
pythonImportsCheck = [
"desktop_notifier"
];
meta = with lib; {
description = "Python library for cross-platform desktop notifications";
homepage = "https://github.com/samschott/desktop-notifier";
changelog = "https://github.com/samschott/desktop-notifier/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}