python310Packages.mergedict: init at 1.0.0

This commit is contained in:
Jonas Heinrich 2022-07-27 12:13:18 +02:00 committed by Yt
parent bfa4829334
commit f792a3b365
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mergedict";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mergedict" ];
meta = with lib; {
description = "A Python dict with a merge() method";
homepage = "https://github.com/schettino72/mergedict";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -5473,6 +5473,8 @@ in {
mergedeep = callPackage ../development/python-modules/mergedeep { };
mergedict = callPackage ../development/python-modules/mergedict { };
merkletools = callPackage ../development/python-modules/merkletools { };
meross-iot = callPackage ../development/python-modules/meross-iot { };