depot/third_party/nixpkgs/pkgs/development/python-modules/aioymaps/default.nix

35 lines
663 B
Nix
Raw Normal View History

{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aioymaps";
version = "1.2.4";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-btBeYP+/ntWpWm5O6ERkRJlhpV8tLe9lrFLYOEB55cY=";
};
propagatedBuildInputs = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aioymaps" ];
meta = with lib; {
description = "Python package fetch data from Yandex maps";
homepage = "https://github.com/devbis/aioymaps";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}