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