1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "easydict";
5 version = "1.9";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3f3f0dab07c299f0f4df032db1f388d985bb57fa4c5be30acd25c5f9a516883b";
10 };
11
12 docheck = false; # No tests in archive
13
14 meta = with lib; {
15 homepage = "https://github.com/makinacorpus/easydict";
16 license = licenses.lgpl3;
17 description = "Access dict values as attributes (works recursively)";
18 };
19}