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