pythonPackages.pushover: init at 0.3

This commit is contained in:
Peter Hoeg
2018-03-05 10:52:59 +08:00
parent 8b097fc7f6
commit 1b129b0b54
2 changed files with 26 additions and 1 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 ];
# checks crash
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 ];
};
}