about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysuez/default.nix
blob: 8af1c7ff006b4b8d39e743cbb36969af6b0d8709 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, regex
, requests
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pysuez";
  version = "0.2.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "ooii";
    repo = "pySuez";
    rev = "refs/tags/v${version}";
    hash = "sha256-Xgd0E/oFO2yyytBjuwr1vDJfKWC0Iw8P6GStCuCni/g=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace ", 'datetime'" ""
  '';

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    regex
    requests
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "pysuez"
  ];

  meta = with lib; {
    description = "Module to get water consumption data from Suez";
    mainProgram = "pysuez";
    homepage = "https://github.com/ooii/pySuez";
    changelog = "https://github.com/ooii/pySuez/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}