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

buildPythonPackage rec {
  pname = "dotmap";
  version = "1.3.29";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-5mhR+Ey8RrruucUIt5LxBNM6OBUWbLy5jNOWg6tzxRE=";
  };

  checkInputs = [
    pytestCheckHook
  ];

  pytestFlagsArray = [
    "dotmap/test.py"
  ];

  pythonImportsCheck = [
    "dotmap"
  ];

  meta = with lib; {
    description = "Python for dot-access dictionaries";
    homepage = "https://github.com/drgrib/dotmap";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}