Unverified Commit 44a97c24 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

python312Packages.types-s3transfer: fix build-system (#353074)

parents e7ca4d0c a45dcff6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

buildPythonPackage rec {
  pname = "types-awscrt";
  version = "0.21.5";
  version = "0.23.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -16,7 +16,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "types_awscrt";
    inherit version;
    hash = "sha256-n39H3mh5nLK8ueSG9I13ufWJYrkvukPLiGDacLPFfRs=";
    hash = "sha256-P9Ht6skj0ZVsDpB8lz+4O9pGW+rn8FRxazcbKT+bX9w=";
  };

  build-system = [ setuptools ];
+5 −2
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  poetry-core,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
@@ -10,13 +11,15 @@ buildPythonPackage rec {
  version = "0.10.2";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    pname = "types_s3transfer";
    inherit version;
    hash = "sha256-YBZ6O/tcU27GzbWBj3+aKO3KncPgtf+FrjdFJvxeV24=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ setuptools ];

  # Module has no tests
  doCheck = false;
+2 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "aws-sam-cli";
  version = "1.120.0";
  version = "1.127.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "aws";
    repo = "aws-sam-cli";
    rev = "refs/tags/v${version}";
    hash = "sha256-XFVh7e9ooIBhWRkVovPdrSuyosBMQ84PDRjV2o0x9ns=";
    hash = "sha256-5/zXvO5xrNkhPCei4O/nMXA/e18VNrED2lpBbflaJLQ=";
  };

  build-system = with python3.pkgs; [ setuptools ];