Merge #100446: python*Packages.apprise: fix dependencies
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
||||
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox
|
||||
, pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox, gntp, sleekxmpp
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestrunner coverage flake8 mock pytest pytestcov tox
|
||||
pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
23
pkgs/development/python-modules/gntp/default.nix
Normal file
23
pkgs/development/python-modules/gntp/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gntp";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "gntp" "gntp.notifier" ];
|
||||
|
||||
# requires a growler service to be running
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/kfdm/gntp/";
|
||||
description = "Python library for working with the Growl Notification Transport Protocol";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.jfroche ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user