depot/third_party/nixpkgs/pkgs/development/python-modules/lmnotify/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

30 lines
660 B
Nix

{ 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 = "Python package for sending notifications to LaMetric Time";
homepage = "https://github.com/keans/lmnotify";
maintainers = with maintainers; [ rhoriguchi ];
license = licenses.mit;
};
}