Merge pull request #37293 from peterhoeg/p/po

pythonPackages.pushover: init at 0.3
This commit is contained in:
Jörg Thalheim 2018-03-18 09:03:41 +00:00 committed by GitHub
commit eb3b45fca7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 2 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, requests }:
buildPythonPackage rec {
pname = "python-pushover";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "0xlghiqd9rsgn7jdhc8v1xh3xspssihrw1vyy85gvjzxa1ah19sk";
};
propagatedBuildInputs = [ requests ];
# there are no tests
doCheck = false;
meta = with stdenv.lib; {
description = "Bindings and command line utility for the Pushover notification service";
homepage = https://github.com/Thibauth/python-pushover;
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
};
}

View file

@ -234,7 +234,7 @@
"notify.message_bird" = ps: with ps; [ ];
"notify.pushbullet" = ps: with ps; [ pushbullet ];
"notify.pushetta" = ps: with ps; [ ];
"notify.pushover" = ps: with ps; [ ];
"notify.pushover" = ps: with ps; [ python-pushover ];
"notify.rocketchat" = ps: with ps; [ ];
"notify.sendgrid" = ps: with ps; [ ];
"notify.simplepush" = ps: with ps; [ ];

View file

@ -12409,7 +12409,6 @@ in {
py = callPackage ../development/python-modules/py { };
pyacoustid = buildPythonPackage rec {
name = "pyacoustid-1.1.0";
@ -12519,6 +12518,8 @@ in {
};
};
python-pushover = callPackage ../development/python-modules/pushover {};
mongodict = buildPythonPackage rec {
name = "mongodict-${version}";
version = "0.3.1";