blob: 6bbb79a3f9ef501a43fea7fa9b01e994012f40ed (
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
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
setuptools-scm,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "deepmerge";
version = "2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-XD2GCB++vQTdXeA2JqBge4CamPtsy6V3C2JGb+lA/yA=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "deepmerge" ];
meta = {
changelog = "https://github.com/toumorokoshi/deepmerge/releases/tag/v${version}";
description = "Toolset to deeply merge python dictionaries";
downloadPage = "https://github.com/toumorokoshi/deepmerge";
homepage = "http://deepmerge.readthedocs.io/en/latest/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
|