Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / aioymaps / default.nix
blobfb57614be9fc754a087d1fc7d367a2983273592f
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchPypi
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "aioymaps";
10   version = "1.2.3";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-pW8FoMdA8XdQZmLRwk5SBBgFhYhgEMJPA9+b+8aicuE=";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21   ];
23   # Project has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "aioymaps" ];
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   };