summary refs log tree commit diff
path: root/pkgs/development/python-modules/apprise
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-05-31 01:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-06-03 20:16:43 -0500
commitbd7aafce8dbd131a364ab31b8a1d11b66a0ec96e (patch)
tree0c5def67165095bc236e6a87425c61848534bab3 /pkgs/development/python-modules/apprise
parentbb36ba2b216178d8e7c53556f8d70a0ed9a8a872 (diff)
downloadnixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar.gz
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar.bz2
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar.lz
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar.xz
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.tar.zst
nixpkgs-bd7aafce8dbd131a364ab31b8a1d11b66a0ec96e.zip
pythonPackages.apprise: init at 0.7.7
Diffstat (limited to 'pkgs/development/python-modules/apprise')
-rw-r--r--pkgs/development/python-modules/apprise/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/apprise/default.nix b/pkgs/development/python-modules/apprise/default.nix
new file mode 100644
index 00000000000..632600a8fe3
--- /dev/null
+++ b/pkgs/development/python-modules/apprise/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi
+, Babel, decorator, requests, requests_oauthlib, oauthlib, urllib3, six, click, markdown, pyyaml
+, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
+}:
+
+buildPythonPackage rec {
+  pname = "apprise";
+  version = "0.7.7";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "c3c7922f7b80107620f541a6c16435485e7045771b3ecfb998deacee0eb90753";
+  };
+
+  nativeBuildInputs = [ Babel ];
+
+  propagatedBuildInputs = [
+    decorator requests requests_oauthlib oauthlib urllib3 six click markdown pyyaml
+  ];
+
+  checkInputs = [
+    pytestrunner coverage flake8 mock pytest pytestcov tox
+  ];
+
+  meta = with lib; {
+    homepage = "https://github.com/caronc/apprise";
+    description = "Push Notifications that work with just about every platform!";
+    license = licenses.mit;
+    maintainers = [ maintainers.marsam ];
+  };
+}