python3Packages.lmnotify: init at 0.0.4

This commit is contained in:
Ryan Horiguchi 2021-06-28 01:17:11 +02:00 committed by Jonathan Ringer
parent b904e6be23
commit 83c7277190
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, oauthlib
, requests
, requests_oauthlib
}:
buildPythonPackage rec {
pname = "lmnotify";
version = "0.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1l0h4yab7ix8psf65iygc1wy5xwq3v2rwwjixvd8rwk46d2477dx";
};
propagatedBuildInputs = [ oauthlib requests requests_oauthlib ];
doCheck = false; # no tests exist
pythonImportsCheck = [ "lmnotify" ];
meta = with lib; {
description = "lmnotify is a package for sending notifications to LaMetric Time.";
homepage = "https://github.com/keans/lmnotify";
maintainers = with maintainers; [ rhoriguchi ];
license = licenses.mit;
};
}

View file

@ -4171,6 +4171,8 @@ in {
lml = callPackage ../development/python-modules/lml { };
lmnotify = callPackage ../development/python-modules/lmnotify { };
lmtpd = callPackage ../development/python-modules/lmtpd { };
localimport = callPackage ../development/python-modules/localimport { };