Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mergedict / default.nix
blob3cfb674a9b2955be1e9b594815a1d9a9abb07265
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "mergedict";
9   version = "1.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
15   };
17   nativeCheckInputs = [ pytestCheckHook ];
19   pythonImportsCheck = [ "mergedict" ];
21   meta = with lib; {
22     description = "A Python dict with a merge() method";
23     homepage = "https://github.com/schettino72/mergedict";
24     license = licenses.mit;
25     maintainers = with maintainers; [ onny ];
26   };