about summary refs log tree commit diff
path: root/pkgs/development/python-modules/attrdict/default.nix
blob: c6a9151d911138082f0a6dba18f611dae909f061 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, coverage, nose, six }:

buildPythonPackage rec {
  pname = "attrdict";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1lrailzxy40dx6sn1hbpnpqfbg7ar75dfj41kx0480wyh39vdbl6";
  };

  propagatedBuildInputs = [ coverage nose six ];

  meta = with stdenv.lib; {
    description = "A dict with attribute-style access";
    homepage = https://github.com/bcj/AttrDict;
    license = licenses.mit;
  };
}