evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / nested-lookup / default.nix
blob3eff01d9480d780c87ed9cadf114ff591ca06569
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5   pytestCheckHook,
6   six,
7 }:
9 buildPythonPackage rec {
10   pname = "nested-lookup";
11   version = "0.2.25";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-b6gydIyQOB8ikdhQgJ4ySSUZ7l8lPWpay8Kdk37KAug=";
17   };
19   propagatedBuildInputs = [ six ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "nested_lookup" ];
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   };