python3Packages.remarshal: 1.3.0 -> 2.1.3

https://github.com/remarshal-project/remarshal/releases/tag/v2.1.3
This commit is contained in:
Martin Weinelt
2026-07-14 14:17:54 +02:00
parent 4071ff3814
commit 9247df61be

View File

@@ -9,10 +9,9 @@
# propagates
cbor2,
colorama,
python-dateutil,
pyyaml,
rich-argparse,
ruamel-yaml,
starlark,
termcolor,
tomli,
tomlkit,
u-msgpack-python,
@@ -23,14 +22,14 @@
buildPythonPackage (finalAttrs: {
pname = "remarshal";
version = "1.3.0"; # test with `nix-build pkgs/pkgs-lib/format`
version = "2.1.3"; # test with `nix-build pkgs/pkgs-lib/tests -A formats`
pyproject = true;
src = fetchFromGitHub {
owner = "remarshal-project";
repo = "remarshal";
tag = "v${finalAttrs.version}";
hash = "sha256-/K8x6ij23pk5O1+XJdFHaGbZ47nFMbXzp+4UMO5dGp4=";
hash = "sha256-n+V2+xSzrBH58F10yKhDiCLvQmlPfDx6rP+ysEGpZg4=";
};
build-system = [ poetry-core ];
@@ -38,15 +37,16 @@ buildPythonPackage (finalAttrs: {
dependencies = [
cbor2
colorama
python-dateutil
pyyaml
rich-argparse
ruamel-yaml
starlark
termcolor
tomli
tomlkit
u-msgpack-python
];
pythonRelaxDeps = [ "cbor2" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {