blob: f32feba1aaa31d0f43894f1d8197b1e84a6cd072 (
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
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
}:
buildPythonPackage rec {
pname = "deep-chainmap";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
pname = "deep_chainmap";
inherit version;
hash = "sha256-Cw6Eiey501mzeigfdwnMuZH28abG4rcoACUGlmkzECA=";
};
build-system = [ flit-core ];
# 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 = {
description = "Recursive subclass of ChainMap";
homepage = "https://github.com/neutrinoceros/deep_chainmap";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ rehno-lindeque ];
};
}
|