about summary refs log tree commit diff
path: root/pkgs/development/python-modules/deep-chainmap/default.nix
blob: f553bcf6d4012fd95c597fea90f0904e553d996a (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "deep-chainmap";
  version = "0.1.1";

  src = fetchPypi {
    pname = "deep_chainmap";
    inherit version;
    sha256 = "sha256-6K7dyB5iQzzw3lXLcU10SVsiHZ+SAXhz9DSCkYnPQAA=";
  };

  # Tests are not published to pypi
  doCheck = false;

  pythonImportsCheck = [ "deep_chainmap" ];

  # See the guide for more information: https://nixos.org/nixpkgs/manual/#chap-meta
  meta = with lib; {
    description = "A recursive subclass of ChainMap";
    homepage = "https://github.com/neutrinoceros/deep-chainmap";
    license = licenses.mit;
    maintainers = with maintainers; [ rehno-lindeque ];
  };
}