python310Packages.mergedict: init at 1.0.0
This commit is contained in:
parent
bfa4829334
commit
f792a3b365
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/mergedict/default.nix
Normal file
26
pkgs/development/python-modules/mergedict/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue