about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-opendata-transport/default.nix
blob: 634ccea371e0e21959ff75d0512f7e8269a75155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 ];
  };
}