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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
inflection,
pydantic,
requests,
urllib3,
click,
pytest,
pytest-cov,
mock,
requests-mock,
tox,
}:
buildPythonPackage rec {
pname = "pyairtable";
version = "3.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1tO3f2/regKoR3nCI103pGYF82AwzyDtmbCLq3MQiow=";
};
build-system = [
setuptools
];
dependencies = [
setuptools
inflection
pydantic
requests
urllib3
click
];
nativeCheckInputs = [
pytest
pytest-cov
mock
requests-mock
tox
];
pythonImportsCheck = [ "pyairtable" ];
meta = {
description = "Python API Client for Airtable";
homepage = "https://pyairtable.readthedocs.io/";
changelog = "https://pyairtable.readthedocs.io/en/${version}/changelog.html";
license = lib.licenses.mit;
mainProgram = "pyairtable";
maintainers = with lib.maintainers; [ stupidcomputer ];
};
}
|