mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #123273 from fabaff/aioymaps
This commit is contained in:
commit
e1e105e72e
4 changed files with 37 additions and 1 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -972,7 +972,7 @@
|
|||
"yale_smart_alarm" = ps: with ps; [ yalesmartalarmclient ];
|
||||
"yamaha" = ps: with ps; [ rxv ];
|
||||
"yamaha_musiccast" = ps: with ps; [ ]; # missing inputs: pymusiccast
|
||||
"yandex_transport" = ps: with ps; [ ]; # missing inputs: aioymaps
|
||||
"yandex_transport" = ps: with ps; [ aioymaps ];
|
||||
"yandextts" = ps: with ps; [ ];
|
||||
"yeelight" = ps: with ps; [ yeelight ];
|
||||
"yeelightsunflower" = ps: with ps; [ ]; # missing inputs: yeelightsunflower
|
||||
|
|
|
@ -407,6 +407,7 @@ in with py.pkgs; buildPythonApplication rec {
|
|||
"workday"
|
||||
"worldclock"
|
||||
"xiaomi_miio"
|
||||
"yandex_transport"
|
||||
"yeelight"
|
||||
"zeroconf"
|
||||
"zha"
|
||||
|
|
|
@ -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 a new issue