blob: bf55a2a8859fa205ff4026b5f5820ab595c1c848 (
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
38
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
python-dateutil,
requests,
requests-oauthlib,
}:
buildPythonPackage rec {
pname = "pynello";
version = "2.0.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "pschmitt";
repo = "pynello";
rev = version;
hash = "sha256-sUy37sEPEMyFYFVBzFVdcg31nZAyC+Ricm4LqxmjuQQ=";
};
propagatedBuildInputs = [
python-dateutil
requests
requests-oauthlib
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pynello" ];
meta = {
description = "Python library for nello.io intercoms";
mainProgram = "nello";
homepage = "https://github.com/pschmitt/pynello";
license = with lib.licenses; [ gpl3Only ];
maintainers = with lib.maintainers; [ fab ];
};
}
|