ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mergedict / default.nix
blobb1ed82f5348f9a200258e6451cb84185009a9b51
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "mergedict";
9   version = "1.0.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
14   };
16   checkInputs = [ pytestCheckHook ];
18   pythonImportsCheck = [ "mergedict" ];
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   };