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