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

buildPythonPackage rec {
  pname = "easydict";
  version = "1.10";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Edyywgqqu/7kwYi0vBQ+9r4ESzTb8M5aWTJCwmlaCA8=";
  };

  doCheck = false; # No tests in archive

  pythonImportsCheck = [
    "easydict"
  ];

  meta = with lib; {
    homepage = "https://github.com/makinacorpus/easydict";
    license = licenses.lgpl3;
    description = "Access dict values as attributes (works recursively)";
  };
}