1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 flask,
7 requests,
8}:
9
10buildPythonPackage rec {
11 pname = "python-join-api";
12 version = "0.0.9";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-FGqOqOd9VVH9hxMqYH7M10W+g5tpImxs+K4AHJJZRaE=";
18 };
19
20 build-system = [ setuptools ];
21
22 dependencies = [
23 flask
24 requests
25 ];
26
27 pythonImportsCheck = [ "pyjoin" ];
28
29 # No tests
30 doCheck = false;
31
32 meta = {
33 description = "Python API for interacting with Join by joaoapps";
34 homepage = "https://github.com/nkgilley/python-join-api";
35 license = lib.licenses.mit;
36 maintainers = [ lib.maintainers.jamiemagee ];
37 };
38}