summary refs log tree commit diff
path: root/pkgs/development/python-modules/huisbaasje-client/default.nix
blob: 2ca1768342d4e6dc2d089e5e8cdcde70f3f40094 (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
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, aiohttp
}:

buildPythonPackage rec {
  pname = "huisbaasje-client";
  version = "0.1.0";

  disabled = pythonOlder "3.6"; # requires python version >=3.6

  src = fetchPypi {
    inherit pname version;
    sha256 = "6bc02384c37aba01719269b05882572050c80cd9abf98caa38519308e05b7db8";
  };

  propagatedBuildInputs = [
    aiohttp
  ];

  # no tests on PyPI, no tags on GitHub
  doCheck = false;

  pythonImportsCheck = [ "huisbaasje.huisbaasje" ];

  meta = with lib; {
    description = "Client for Huisbaasje";
    homepage = "https://github.com/denniss17/huisbaasje-client";
    license = licenses.asl20;
    maintainers = with maintainers; [ dotlambda ];
  };
}