python311Packages.amazon-kclpy 2.1.1 -> 2.1.3 https://repology.org/project/python:amazon-kclpy/versions attrpath: python311Packages.amazon-kclpy Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jk0hgkaz33qbv13x32f0bdwh8jynk6ry-packages.json.drv building '/nix/store/jk0hgkaz33qbv13x32f0bdwh8jynk6ry-packages.json.drv'... Going to be running update for following packages: - python3.11-amazon-kclpy-2.1.1 Press Enter key to continue... Running update for: - python3.11-amazon-kclpy-2.1.1: UPDATING ... - python3.11-amazon-kclpy-2.1.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/amazon-kclpy/default.nix b/pkgs/development/python-modules/amazon-kclpy/default.nix index 623ab60ed63a..fca55e3bc0dc 100644 --- a/pkgs/development/python-modules/amazon-kclpy/default.nix +++ b/pkgs/development/python-modules/amazon-kclpy/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { pname = "amazon-kclpy"; - version = "2.1.1"; + version = "2.1.3"; src = fetchFromGitHub { owner = "awslabs"; repo = "amazon-kinesis-client-python"; rev = "refs/tags/v${version}"; - hash = "sha256-Z0MC4SbZS82beMA7UunEfs4KvrmhW5xAhFeb7WXA7DM="; + hash = "sha256-3BhccRJd6quElXZSix1aVIqWr9wdcTTziDhnIOLiPPo="; }; # argparse is just required for python2.6 No auto update branch exists Old version 2.1.1" not present in staging derivation file with contents: { lib, buildPythonPackage, fetchFromGitHub, python, mock, boto, pytest }: buildPythonPackage rec { pname = "amazon-kclpy"; version = "2.1.3"; src = fetchFromGitHub { owner = "awslabs"; repo = "amazon-kinesis-client-python"; rev = "refs/tags/v${version}"; hash = "sha256-3BhccRJd6quElXZSix1aVIqWr9wdcTTziDhnIOLiPPo="; }; # argparse is just required for python2.6 prePatch = '' substituteInPlace setup.py \ --replace "'argparse'," "" ''; propagatedBuildInputs = [ mock boto ]; nativeCheckInputs = [ pytest ]; checkPhase = '' ${python.interpreter} -m pytest ''; meta = with lib; { description = "Amazon Kinesis Client Library for Python"; homepage = "https://github.com/awslabs/amazon-kinesis-client-python"; license = licenses.amazonsl; maintainers = with maintainers; [ psyanticy ]; }; }