1{ stdenv, buildPythonPackage, fetchPypi 2, requests }: 3 4buildPythonPackage rec { 5 pname = "python-pushover"; 6 version = "0.4"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "dee1b1344fb8a5874365fc9f886d9cbc7775536629999be54dfa60177cf80810"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 # tests require network 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Bindings and command line utility for the Pushover notification service"; 20 homepage = https://github.com/Thibauth/python-pushover; 21 license = licenses.gpl3; 22 maintainers = with maintainers; [ peterhoeg ]; 23 }; 24}