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

buildPythonPackage rec {
  pname = "aadict";
  version = "0.2.3";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
  };

  propagatedBuildInputs = [ six ];
  nativeCheckInputs = [ nose coverage ];

  meta = with lib; {
    homepage = "https://github.com/metagriffin/aadict";
    description = "An auto-attribute dict (and a couple of other useful dict functions).";
    maintainers = with maintainers; [ glittershark ];
    license = licenses.gpl3;
  };
}