2018-03-05 03:52:59 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, requests }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-pushover";
|
2018-06-12 18:47:04 +02:00
|
|
|
version = "0.4";
|
2018-03-05 03:52:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 18:47:04 +02:00
|
|
|
sha256 = "dee1b1344fb8a5874365fc9f886d9cbc7775536629999be54dfa60177cf80810";
|
2018-03-05 03:52:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
2018-03-18 11:05:24 +01:00
|
|
|
# tests require network
|
2018-03-05 03:52:59 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|