python3Packages.lmnotify: init at 0.0.4
This commit is contained in:
parent
b904e6be23
commit
83c7277190
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/lmnotify/default.nix
Normal file
30
pkgs/development/python-modules/lmnotify/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue