pythonPackages.pushover: init at 0.3
This commit is contained in:
parent
8b097fc7f6
commit
1b129b0b54
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, requests }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-pushover";
|
||||||
|
version = "0.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0xlghiqd9rsgn7jdhc8v1xh3xspssihrw1vyy85gvjzxa1ah19sk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
# checks crash
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12409,7 +12409,6 @@ in {
|
||||||
|
|
||||||
py = callPackage ../development/python-modules/py { };
|
py = callPackage ../development/python-modules/py { };
|
||||||
|
|
||||||
|
|
||||||
pyacoustid = buildPythonPackage rec {
|
pyacoustid = buildPythonPackage rec {
|
||||||
name = "pyacoustid-1.1.0";
|
name = "pyacoustid-1.1.0";
|
||||||
|
|
||||||
|
@ -12519,6 +12518,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
python-pushover = callPackage ../development/python-modules/pushover {};
|
||||||
|
|
||||||
mongodict = buildPythonPackage rec {
|
mongodict = buildPythonPackage rec {
|
||||||
name = "mongodict-${version}";
|
name = "mongodict-${version}";
|
||||||
version = "0.3.1";
|
version = "0.3.1";
|
||||||
|
|
Loading…
Reference in New Issue