1{ lib, buildPythonPackage, fetchPypi, coverage, nose, six }: 2 3buildPythonPackage rec { 4 pname = "attrdict"; 5 version = "2.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70"; 10 }; 11 12 propagatedBuildInputs = [ coverage nose six ]; 13 14 meta = with lib; { 15 description = "A dict with attribute-style access"; 16 homepage = "https://github.com/bcj/AttrDict"; 17 license = licenses.mit; 18 }; 19}