2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-10-29 17:05:04 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-07-03 11:37:24 +00:00
|
|
|
, python-dateutil
|
2018-10-29 17:05:04 +00:00
|
|
|
, pkgs
|
2021-07-16 21:33:50 +00:00
|
|
|
, coreutils
|
|
|
|
, which
|
2018-10-29 17:05:04 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-11-04 10:35:12 +00:00
|
|
|
version = "2.0.3";
|
2018-10-29 17:05:04 +00:00
|
|
|
pname = "pync";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:12 +00:00
|
|
|
sha256 = "38b9e61735a3161f9211a5773c5f5ea698f36af4ff7f77fa03e8d1ff0caa117f";
|
2018-10-29 17:05:04 +00:00
|
|
|
};
|
|
|
|
|
2021-07-16 21:33:50 +00:00
|
|
|
nativeBuildInputs = [ coreutils ];
|
|
|
|
checkInputs = [ which ];
|
2021-07-03 11:37:24 +00:00
|
|
|
propagatedBuildInputs = [ python-dateutil ];
|
2018-10-29 17:05:04 +00:00
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
preInstall = lib.optionalString stdenv.isDarwin ''
|
2018-10-29 17:05:04 +00:00
|
|
|
sed -i 's|^\([ ]*\)self.bin_path.*$|\1self.bin_path = "${pkgs.terminal-notifier}/bin/terminal-notifier"|' build/lib/pync/TerminalNotifier.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 17:05:04 +00:00
|
|
|
description = "Python Wrapper for Mac OS 10.8 Notification Center";
|
2021-07-16 21:33:50 +00:00
|
|
|
homepage = "https://pypi.python.org/pypi/pync";
|
2018-10-29 17:05:04 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|