python311Packages.deepmerge: 1.1.0 -> 1.1.1

https://github.com/toumorokoshi/deepmerge/releases/tag/v1.1.1
This commit is contained in:
Martin Weinelt 2024-01-05 03:14:44 +01:00
parent da102b9c3f
commit a6ea8a52ae
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,24 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
# build-system
, setuptools
, setuptools-scm
, vcver
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "deepmerge";
version = "1.1.0";
disabled = isPy27;
format = "pyproject";
version = "1.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-TCeg213iheGnzqx9vBUx3qpVa2J96kkAyCRFgezf6i0=";
hash = "sha256-U6SJ3JRJY25ICnhDWa4qqzGRdIySBklVHI43hiLw7KQ=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
@ -26,10 +29,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "deepmerge" ];
pythonImportsCheck = [
"deepmerge"
];
meta = with lib; {
changelog = "https://github.com/toumorokoshi/deepmerge/releases/tag/v${version}";
description = "A toolset to deeply merge python dictionaries.";
downloadPage = "https://github.com/toumorokoshi/deepmerge";
homepage = "http://deepmerge.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];