summary refs log tree commit diff
path: root/pkgs/development/python-modules/pushover/default.nix
blob: 72d38259129e3d1b1b09532ba6dac7dff7ef0a62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, 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 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 ];
  };
}