mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 09:24:20 +01:00
https://github.com/networktocode/diffsync/blob/v2.2.0/CHANGELOG.md This commit was automatically generated using update-python-libraries.
51 lines
988 B
Nix
51 lines
988 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colorama,
|
|
fetchFromGitHub,
|
|
packaging,
|
|
poetry-core,
|
|
pydantic,
|
|
redis,
|
|
structlog,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "diffsync";
|
|
version = "2.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "networktocode";
|
|
repo = "diffsync";
|
|
tag = "v${version}";
|
|
hash = "sha256-NkISo4AmyxA0pQEkzajq+hpxoMefgSOHQTy70kOjDl8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"packaging"
|
|
"structlog"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
colorama
|
|
packaging
|
|
pydantic
|
|
redis
|
|
structlog
|
|
];
|
|
|
|
pythonImportsCheck = [ "diffsync" ];
|
|
|
|
meta = {
|
|
description = "Utility library for comparing and synchronizing different datasets";
|
|
homepage = "https://github.com/networktocode/diffsync";
|
|
changelog = "https://github.com/networktocode/diffsync/blob/${src.tag}/CHANGELOG.md";
|
|
license = with lib.licenses; [ asl20 ];
|
|
maintainers = with lib.maintainers; [ clerie ];
|
|
};
|
|
}
|