about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/garages-amsterdam/default.nix
blob: 08a687d70601d7b1ed4f5d23776a0b3cfc4cc240 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, aiohttp
}:

buildPythonPackage rec {
  pname = "garages-amsterdam";
  version = "2.1.1";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "klaasnicolaas";
    repo = "garages_amsterdam";
    rev = version;
    sha256 = "1m0bc3bzb83apprk412s7k5r2g6p5br2hrak2a976lh9ifk1d8hj";
  };

  propagatedBuildInputs = [
    aiohttp
  ];

  # The only test requires network access
  doCheck = false;

  pythonImportsCheck = [ "garages_amsterdam" ];

  meta = with lib; {
    description = "Python client for getting garage occupancy in Amsterdam";
    homepage = "https://github.com/klaasnicolaas/garages_amsterdam";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}