python312Packages.diffsync: 2.0.1 -> 2.1.0

This commit is contained in:
R. Ryantm
2025-05-02 05:22:29 +00:00
parent b5dd9efc91
commit cff26cf833
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "diffsync";
version = "2.0.1";
version = "2.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "networktocode";
repo = "diffsync";
tag = "v${version}";
hash = "sha256-T3kcZcRm28WeXZTXBBCpaMxjgB0KmqvWO4gdILH5hCA=";
hash = "sha256-UZpGWa/UjHXp6jD0fPNWTMl1DZ1AWmILRX/5XRIpLdE=";
};
nativeBuildInputs = [
@@ -44,7 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Utility library for comparing and synchronizing different datasets";
homepage = "https://github.com/networktocode/diffsync";
changelog = "https://github.com/networktocode/diffsync/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/networktocode/diffsync/blob/${src.tag}/CHANGELOG.md";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ clerie ];
};