1{ buildPythonPackage
2, fetchPypi
3, lib
4, pytestCheckHook
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "nested-lookup";
10 version = "0.2.25";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-b6gydIyQOB8ikdhQgJ4ySSUZ7l8lPWpay8Kdk37KAug=";
15 };
16
17 propagatedBuildInputs = [
18 six
19 ];
20
21 nativeCheckInputs = [
22 pytestCheckHook
23 ];
24
25 pythonImportsCheck = [ "nested_lookup" ];
26
27 meta = with lib; {
28 description = "Python functions for working with deeply nested documents (lists and dicts)";
29 homepage = "https://github.com/russellballestrini/nested-lookup";
30 license = licenses.publicDomain;
31 maintainers = with maintainers; [ tboerger ];
32 };
33}