My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pushover/default.nix

24 lines
610 B

{ lib, buildPythonPackage, fetchPypi
, requests }:
buildPythonPackage rec {
pname = "python-pushover";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "dee1b1344fb8a5874365fc9f886d9cbc7775536629999be54dfa60177cf80810";
};
propagatedBuildInputs = [ requests ];
# tests require network
doCheck = false;
meta = with 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 ];
};
}