Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pync / default.nix
blob9506b8bae9535c200e5bfa53b3cb7395d24ecc1d
1 { lib, stdenv
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , dateutil
6 , pkgs
7 }:
9 buildPythonPackage rec {
10   version  = "2.0.3";
11   pname = "pync";
12   disabled = ! isPy27;
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "38b9e61735a3161f9211a5773c5f5ea698f36af4ff7f77fa03e8d1ff0caa117f";
17   };
19   buildInputs = [ pkgs.coreutils ];
20   propagatedBuildInputs = [ dateutil ];
22   preInstall = lib.optionalString stdenv.isDarwin ''
23     sed -i 's|^\([ ]*\)self.bin_path.*$|\1self.bin_path = "${pkgs.terminal-notifier}/bin/terminal-notifier"|' build/lib/pync/TerminalNotifier.py
24   '';
26   meta = with lib; {
27     description = "Python Wrapper for Mac OS 10.8 Notification Center";
28     homepage    = "https://pypi.python.org/pypi/pync/1.4";
29     license     = licenses.mit;
30     platforms   = platforms.darwin;
31     maintainers = with maintainers; [ lovek323 ];
32   };