2022-12-31T17:05:37 python310Packages.awscrt 0 -> 1 2022-12-31T17:05:39 attrpath: python310Packages.awscrt 2022-12-31T17:05:39 Checking auto update branch... 2022-12-31T17:05:44 [version] 2022-12-31T17:05:44 [version] skipping because derivation has updateScript 2022-12-31T17:05:44 [rustCrateVersion] 2022-12-31T17:05:44 [rustCrateVersion] No cargoSha256 found 2022-12-31T17:05:44 [golangModuleVersion] 2022-12-31T17:05:44 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-31T17:05:44 [updateScript] 2022-12-31T17:05:46 [updateScript] Success 2022-12-31T17:05:46 [updateScript] this derivation will be built: /nix/store/maqv4inpgzgn6acyp34y6h6qw18hsksn-packages.json.drv building '/nix/store/maqv4inpgzgn6acyp34y6h6qw18hsksn-packages.json.drv'... Going to be running update for following packages: - python3.10-awscrt-0.16.1 Press Enter key to continue... Running update for: - python3.10-awscrt-0.16.1: UPDATING ... - python3.10-awscrt-0.16.1: DONE. Packages updated! 2022-12-31T17:05:46 2022-12-31T17:05:46 [quotedUrls] 2022-12-31T17:05:46 [quotedUrls] nothing found to replace 2022-12-31T17:05:46 Diff after rewrites: diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix index 9ebf947c734..7d6c0457c0b 100644 --- a/pkgs/development/python-modules/awscrt/default.nix +++ b/pkgs/development/python-modules/awscrt/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "awscrt"; - version = "0.16.1"; + version = "0.16.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-j9++euxSsvf6ZLkVJtyGdlOx6WWrAXEOczqwypYZkXA="; + hash = "sha256-w39Qt046dWDzbt41t9LVMCJNM2uGOv9VTZf3yfWUlNM="; }; buildInputs = lib.optionals stdenv.isDarwin [ 2022-12-31T17:07:15 Old version 0.16.1" not present in master derivation file with contents: { lib , buildPythonPackage , fetchPypi , cmake , perl , stdenv , gcc10 , CoreFoundation , Security , pythonOlder }: buildPythonPackage rec { pname = "awscrt"; version = "0.16.3"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-w39Qt046dWDzbt41t9LVMCJNM2uGOv9VTZf3yfWUlNM="; }; buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ]; # Required to suppress -Werror # https://github.com/NixOS/nixpkgs/issues/39687 hardeningDisable = lib.optionals stdenv.cc.isClang [ "strictoverflow" ]; # gcc <10 is not supported, LLVM on darwin is just fine nativeBuildInputs = [ cmake ] ++ lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [ gcc10 perl ]; dontUseCmakeConfigure = true; pythonImportsCheck = [ "awscrt" ]; # Unable to import test module # https://github.com/awslabs/aws-crt-python/issues/281 doCheck = false; meta = with lib; { homepage = "https://github.com/awslabs/aws-crt-python"; changelog = "https://github.com/awslabs/aws-crt-python/releases/tag/v${version}"; description = "Python bindings for the AWS Common Runtime"; license = licenses.asl20; maintainers = with maintainers; [ davegallant ]; }; }