1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5, nose
6, coverage
7}:
8
9buildPythonPackage rec {
10 pname = "aadict";
11 version = "0.2.3";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
16 };
17
18 propagatedBuildInputs = [ six ];
19 checkInputs = [ nose coverage ];
20
21 meta = with lib; {
22 homepage = "https://github.com/metagriffin/aadict";
23 description = "An auto-attribute dict (and a couple of other useful dict functions).";
24 maintainers = with maintainers; [ glittershark ];
25 license = licenses.gpl3;
26 };
27}