blob: ca185b594c70d97fbca36ce4cf1c1129e88d52ef (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "aioymaps";
version = "1.2.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-tEl2tX/mB8uYTYj1YFDs/2sPXiv6897jCEmsFCWBXYg=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aioymaps" ];
meta = {
description = "Python package fetch data from Yandex maps";
homepage = "https://github.com/devbis/aioymaps";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|