python3Packages.aioymaps: init at 1.1.0
This commit is contained in:
parent
311d918840
commit
6c91f3e4dc
33
pkgs/development/python-modules/aioymaps/default.nix
Normal file
33
pkgs/development/python-modules/aioymaps/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioymaps";
|
||||
version = "1.1.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rvgf4flvnpjj0sm14xlnfmmnlmkz6xq5h5mfb14amkfy76za3jm";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -351,6 +351,8 @@ in {
|
||||
|
||||
aiowinreg = callPackage ../development/python-modules/aiowinreg { };
|
||||
|
||||
aioymaps = callPackage ../development/python-modules/aioymaps { };
|
||||
|
||||
aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
|
||||
|
||||
airly = callPackage ../development/python-modules/airly { };
|
||||
|
Loading…
Reference in New Issue
Block a user