nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge #100446: python*Packages.apprise: fix dependencies

(cherry picked from commit ed217bcc358cc499104d8f214b1237d3c24d8597)

+37 -2
+10
maintainers/maintainer-list.nix
··· 3851 3851 githubId = 2736480; 3852 3852 name = "Johannes Frankenau"; 3853 3853 }; 3854 + jfroche = { 3855 + name = "Jean-François Roche"; 3856 + email = "jfroche@pyxel.be"; 3857 + github = "jfroche"; 3858 + githubId = 207369; 3859 + keys = [{ 3860 + longkeyid = "dsa1024/0xD1D09DE169EA19A0"; 3861 + fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0"; 3862 + }]; 3863 + }; 3854 3864 jgeerds = { 3855 3865 email = "jascha@geerds.org"; 3856 3866 github = "jgeerds";
+2 -2
pkgs/development/python-modules/apprise/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , Babel, requests, requests_oauthlib, six, click, markdown, pyyaml 3 - , pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox 3 + , pytestrunner, coverage, flake8, mock, pytest, pytestcov, tox, gntp, sleekxmpp 4 4 }: 5 5 6 6 buildPythonPackage rec { ··· 19 19 ]; 20 20 21 21 checkInputs = [ 22 - pytestrunner coverage flake8 mock pytest pytestcov tox 22 + pytestrunner coverage flake8 mock pytest pytestcov tox gntp sleekxmpp 23 23 ]; 24 24 25 25 meta = with lib; {
+23
pkgs/development/python-modules/gntp/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, nose }: 2 + 3 + buildPythonPackage rec { 4 + pname = "gntp"; 5 + version = "1.0.3"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l"; 10 + }; 11 + 12 + pythonImportsCheck = [ "gntp" "gntp.notifier" ]; 13 + 14 + # requires a growler service to be running 15 + doCheck = false; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/kfdm/gntp/"; 19 + description = "Python library for working with the Growl Notification Transport Protocol"; 20 + license = licenses.mit; 21 + maintainers = [ maintainers.jfroche ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 2361 2361 2362 2362 gmusicapi = callPackage ../development/python-modules/gmusicapi { }; 2363 2363 2364 + gntp = callPackage ../development/python-modules/gntp { }; 2365 + 2364 2366 gnureadline = callPackage ../development/python-modules/gnureadline { }; 2365 2367 2366 2368 gnutls = callPackage ../development/python-modules/gnutls { };