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