From 800a740ea8437feec6c4814fe25318f6112e4e5c Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Tue, 10 Dec 2024 17:45:54 +0000 Subject: [PATCH] python3Packages.craft-archives: 2.0.0 -> 2.0.2 --- .../python-modules/craft-archives/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/craft-archives/default.nix b/pkgs/development/python-modules/craft-archives/default.nix index c0d72355263d..efa3965a4128 100644 --- a/pkgs/development/python-modules/craft-archives/default.nix +++ b/pkgs/development/python-modules/craft-archives/default.nix @@ -5,12 +5,12 @@ nix-update-script, launchpadlib, lazr-restfulclient, + lazr-uri, overrides, pydantic, - setuptools, python-debian, + distro, setuptools-scm, - tabulate, pytest-check, pytest-mock, pytestCheckHook, @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "craft-archives"; - version = "2.0.0"; + version = "2.0.2"; pyproject = true; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "canonical"; repo = "craft-archives"; rev = "refs/tags/${version}"; - hash = "sha256-BrKyOdfbwt9qU5Bt/kX/+GgxH7LCFmmFg4mevBWVp2I="; + hash = "sha256-1HEz4d1WLQDDHga7X+V/37n8E7JK/k0z+UDeNEiLOHs="; }; postPatch = '' @@ -40,11 +40,12 @@ buildPythonPackage rec { build-system = [ setuptools-scm ]; dependencies = [ + distro launchpadlib lazr-restfulclient + lazr-uri overrides pydantic - tabulate python-debian ];