1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytest7CheckHook, 6 six, 7}: 8 9buildPythonPackage rec { 10 pname = "nocasedict"; 11 version = "2.0.3"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-HJImx/WoqXrVHcsK4xV6cg4/fLnEVo0i6joF4/hWWKk="; 17 }; 18 19 propagatedBuildInputs = [ six ]; 20 21 nativeCheckInputs = [ pytest7CheckHook ]; 22 23 pythonImportsCheck = [ "nocasedict" ]; 24 25 meta = with lib; { 26 description = "A case-insensitive ordered dictionary for Python"; 27 homepage = "https://github.com/pywbem/nocasedict"; 28 license = licenses.lgpl21Plus; 29 maintainers = with maintainers; [ freezeboy ]; 30 }; 31}