1{ lib
2, fetchPypi
3, buildPythonPackage
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "mergedict";
9 version = "1.0.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
14 };
15
16 checkInputs = [ pytestCheckHook ];
17
18 pythonImportsCheck = [ "mergedict" ];
19
20 meta = with lib; {
21 description = "A Python dict with a merge() method";
22 homepage = "https://github.com/schettino72/mergedict";
23 license = licenses.mit;
24 maintainers = with maintainers; [ onny ];
25 };
26}