about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/srpenergy/default.nix
blob: c5d20436a09cc85a75b5c9a869300f89a4283741 (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
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, python-dateutil
, requests
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "srpenergy";
  version = "1.3.5";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "lamoreauxlab";
    repo = "srpenergy-api-client-python";
    rev = version;
    sha256 = "sha256-s90+gzjcG27pUcMGpzf2rf+mR8/fmpvwBXGfvv3rNGI=";
  };

  propagatedBuildInputs = [
    python-dateutil
    requests
  ];

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "srpenergy.client" ];

  meta = with lib; {
    description = "Unofficial Python module for interacting with Srp Energy data";
    homepage = "https://github.com/lamoreauxlab/srpenergy-api-client-python";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}