1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5 pytestCheckHook,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "nested-lookup";
11 version = "0.2.25";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-b6gydIyQOB8ikdhQgJ4ySSUZ7l8lPWpay8Kdk37KAug=";
17 };
18
19 propagatedBuildInputs = [ six ];
20
21 nativeCheckInputs = [ pytestCheckHook ];
22
23 pythonImportsCheck = [ "nested_lookup" ];
24
25 meta = with lib; {
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 ];
30 };
31}