1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "frozendict"; 5 version = "1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0ibf1wipidz57giy53dh7mh68f2hz38x8f4wdq88mvxj5pr7jhbp"; 10 }; 11 12 # frozendict does not come with tests 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 homepage = https://github.com/slezica/python-frozendict; 17 description = "An immutable dictionary"; 18 license = licenses.mit; 19 }; 20}