9 buildPythonPackage rec {
10 pname = "nested-lookup";
12 format = "setuptools";
15 inherit pname version;
16 hash = "sha256-b6gydIyQOB8ikdhQgJ4ySSUZ7l8lPWpay8Kdk37KAug=";
19 propagatedBuildInputs = [ six ];
21 nativeCheckInputs = [ pytestCheckHook ];
23 pythonImportsCheck = [ "nested_lookup" ];
26 description = "Python functions for working with deeply nested documents (lists and dicts)";
27 homepage = "https://github.com/russellballestrini/nested-lookup";
28 license = licenses.publicDomain;
29 maintainers = with maintainers; [ tboerger ];