blob: 7d40949ba73304496490de8495c41f85ef1f9ba0 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
flask,
requests,
}:
buildPythonPackage rec {
pname = "python-join-api";
version = "0.0.9";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-FGqOqOd9VVH9hxMqYH7M10W+g5tpImxs+K4AHJJZRaE=";
};
build-system = [ setuptools ];
dependencies = [
flask
requests
];
pythonImportsCheck = [ "pyjoin" ];
# No tests
doCheck = false;
meta = {
description = "Python API for interacting with Join by joaoapps";
homepage = "https://github.com/nkgilley/python-join-api";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|