Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
582 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchPypi,
buildPythonPackage,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mergedict";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mergedict" ];
meta = with lib; {
description = "Python dict with a merge() method";
homepage = "https://github.com/schettino72/mergedict";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}