1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "deep-chainmap";
8 version = "0.1.1";
9
10 src = fetchPypi {
11 pname = "deep_chainmap";
12 inherit version;
13 hash = "sha256-6K7dyB5iQzzw3lXLcU10SVsiHZ+SAXhz9DSCkYnPQAA=";
14 };
15
16 # Tests are not published to pypi
17 doCheck = false;
18
19 pythonImportsCheck = [ "deep_chainmap" ];
20
21 # See the guide for more information: https://nixos.org/nixpkgs/manual/#chap-meta
22 meta = with lib; {
23 description = "A recursive subclass of ChainMap";
24 homepage = "https://github.com/neutrinoceros/deep-chainmap";
25 license = licenses.mit;
26 maintainers = with maintainers; [ rehno-lindeque ];
27 };
28}