ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pushover / default.nix
blob0f8a5f2779c1e3d91af714dc001b127f0f728d07
1 { stdenv, lib, buildPythonPackage, fetchPypi
2 , requests }:
4 buildPythonPackage rec {
5   pname = "python-pushover";
6   version = "0.4";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "dee1b1344fb8a5874365fc9f886d9cbc7775536629999be54dfa60177cf80810";
11   };
13   propagatedBuildInputs = [ requests ];
15   # tests require network
16   doCheck = false;
18   meta = with lib; {
19     broken = true; # Relies on 2to3 via setuptools
20     description = "Bindings and command line utility for the Pushover notification service";
21     homepage = "https://github.com/Thibauth/python-pushover";
22     license = licenses.gpl3;
23     maintainers = with maintainers; [ peterhoeg ];
24   };