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