evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / deep-chainmap / default.nix
blob15238b0f5f17ca09cc56eb5e4d1d08da1165b8e8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "deep-chainmap";
9   version = "0.1.1";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "deep_chainmap";
14     inherit version;
15     hash = "sha256-6K7dyB5iQzzw3lXLcU10SVsiHZ+SAXhz9DSCkYnPQAA=";
16   };
18   # Tests are not published to pypi
19   doCheck = false;
21   pythonImportsCheck = [ "deep_chainmap" ];
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   };