Unverified Commit bce6f852 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

python3Packages.craft-archives: 2.0.0 -> 2.0.2 (#363994)

parents 66807626 e6c72076
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#! /usr/bin/env nix-shell
#! nix-shell -i python3 -p python3Packages.packaging python3Packages.debian common-updater-scripts
#! nix-shell -i python3 -p python3Packages.packaging python3Packages.python-debian common-updater-scripts

import base64
import textwrap
+1 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ python3Packages.buildPythonApplication rec {
      pytest-mock
      pytest-subprocess
      pytestCheckHook
      tabulate
    ]
    ++ [ dpkg ];

+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ python3Packages.buildPythonApplication rec {
    craft-platforms
    craft-providers
    craft-store
    debian
    python-debian
    docutils
    jsonschema
    launchpadlib
+8 −5
Original line number Diff line number Diff line
@@ -5,11 +5,12 @@
  nix-update-script,
  launchpadlib,
  lazr-restfulclient,
  lazr-uri,
  overrides,
  pydantic,
  setuptools,
  python-debian,
  distro,
  setuptools-scm,
  tabulate,
  pytest-check,
  pytest-mock,
  pytestCheckHook,
@@ -17,7 +18,7 @@

buildPythonPackage rec {
  pname = "craft-archives";
  version = "2.0.0";
  version = "2.0.2";

  pyproject = true;

@@ -25,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 = ''
@@ -39,11 +40,13 @@ buildPythonPackage rec {
  build-system = [ setuptools-scm ];

  dependencies = [
    distro
    launchpadlib
    lazr-restfulclient
    lazr-uri
    overrides
    pydantic
    tabulate
    python-debian
  ];

  pythonImportsCheck = [ "craft_archives" ];
+2 −4
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@
  pyyaml,
  requests,
  requests-unixsocket,
  urllib3,
  pytestCheckHook,
  pytest-check,
  pytest-mock,
@@ -25,7 +24,7 @@

buildPythonPackage rec {
  pname = "craft-parts";
  version = "2.1.3";
  version = "2.1.4";

  pyproject = true;

@@ -33,7 +32,7 @@ buildPythonPackage rec {
    owner = "canonical";
    repo = "craft-parts";
    rev = "refs/tags/${version}";
    hash = "sha256-ouvl4mIDIWHWp84E1I41g/XnP22kCV55CqsVLit5yb4=";
    hash = "sha256-z0Om1/0Y6fDFHXB0GKFelmYwNwTH7loTtRjXtmjsjkY=";
  };

  patches = [ ./bash-path.patch ];
@@ -53,7 +52,6 @@ buildPythonPackage rec {
    pyyaml
    requests
    requests-unixsocket
    urllib3
  ];

  pythonImportsCheck = [ "craft_parts" ];
Loading