1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchPypi,
6 pythonOlder,
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "aioymaps";
12 version = "1.2.5";
13 pyproject = true;
14
15 disabled = pythonOlder "3.6";
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-tEl2tX/mB8uYTYj1YFDs/2sPXiv6897jCEmsFCWBXYg=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [ aiohttp ];
25
26 # Project has no tests
27 doCheck = false;
28
29 pythonImportsCheck = [ "aioymaps" ];
30
31 meta = with lib; {
32 description = "Python package fetch data from Yandex maps";
33 homepage = "https://github.com/devbis/aioymaps";
34 license = licenses.mit;
35 maintainers = with maintainers; [ fab ];
36 };
37}