blob: f682de99cbad19d8b42b0383074a268b9fd4c1a8 (
about) (
plain)
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
29
30
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "deep-chainmap";
version = "0.1.2";
format = "setuptools";
src = fetchPypi {
pname = "deep_chainmap";
inherit version;
hash = "sha256-R7Pfh+1bYJ7LCU+0SyZi2XGOsgL1zWiMkp1z9HD1I1w=";
};
# 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 = "Recursive subclass of ChainMap";
homepage = "https://github.com/neutrinoceros/deep-chainmap";
license = licenses.mit;
maintainers = with maintainers; [ rehno-lindeque ];
};
}
|