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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70";
  };

  propagatedBuildInputs = [ coverage nose six ];

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