mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
python3Packages.python-opendata-transport: init at 0.2.1
This commit is contained in:
parent
d4a76b1f5f
commit
fff0b0c840
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-opendata-transport";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "python_opendata_transport";
|
||||
inherit version;
|
||||
sha256 = "0pxs9zqk00vn1s74cx1416mqmixrr74wb0jb0j6b1c3xpvzlfbks";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
urllib3
|
||||
];
|
||||
|
||||
# no tests are present
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "opendata_transport" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client for interacting with transport.opendata.ch";
|
||||
homepage = "https://github.com/home-assistant-ecosystem/python-opendata-transport";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -796,7 +796,7 @@
|
||||
"supla" = ps: with ps; [ ]; # missing inputs: asyncpysupla
|
||||
"surepetcare" = ps: with ps; [ ]; # missing inputs: surepy
|
||||
"swiss_hydrological_data" = ps: with ps; [ ]; # missing inputs: swisshydrodata
|
||||
"swiss_public_transport" = ps: with ps; [ ]; # missing inputs: python_opendata_transport
|
||||
"swiss_public_transport" = ps: with ps; [ python-opendata-transport ];
|
||||
"swisscom" = ps: with ps; [ ];
|
||||
"switch" = ps: with ps; [ ];
|
||||
"switchbot" = ps: with ps; [ ]; # missing inputs: PySwitchbot
|
||||
|
@ -6044,6 +6044,8 @@ in {
|
||||
|
||||
python-olm = callPackage ../development/python-modules/python-olm { };
|
||||
|
||||
python-opendata-transport = callPackage ../development/python-modules/python-opendata-transport { };
|
||||
|
||||
python_openzwave = callPackage ../development/python-modules/python_openzwave { inherit (pkgs) pkgconfig; };
|
||||
|
||||
python-otr = callPackage ../development/python-modules/python-otr { };
|
||||
|
Loading…
Reference in New Issue
Block a user