blob: 8a1211c5425c2e6a47cd74a9675a989632f71e10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
oauthlib,
requests,
requests-oauthlib,
}:
buildPythonPackage rec {
pname = "lmnotify";
version = "0.0.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-cCP7BU2f7QJe9gAI298cvkp3OGijvBv8G1RN7qfZ5PE=";
};
propagatedBuildInputs = [
oauthlib
requests
requests-oauthlib
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "lmnotify" ];
meta = {
description = "Python package for sending notifications to LaMetric Time";
homepage = "https://github.com/keans/lmnotify";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ rhoriguchi ];
};
}
|