nixpkgs/pkgs/development/python-modules/mergedict/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

27 lines
553 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mergedict";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-4ZkrNqVCKQFPvLx6nIwo0fSuEx6h2NNFyTlz+fDcb9w=";
};
nativeCheckInputs = [ 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 ];
};
}