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