1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "dotmap"; 9 version = "1.3.25"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "sha256-wOJjGlMUjTYj2af8I8dg1LfehCL2u4gYuEfkYHKrTPA="; 14 }; 15 16 checkInputs = [ 17 pytestCheckHook 18 ]; 19 20 pytestFlagsArray = [ "dotmap/test.py" ]; 21 22 pythonImportsCheck = [ "dotmap" ]; 23 24 meta = with lib; { 25 description = "Python for dot-access dictionaries"; 26 homepage = "https://github.com/drgrib/dotmap"; 27 license = with licenses; [ mit ]; 28 maintainers = with maintainers; [ fab ]; 29 }; 30}