Unverified Commit 2c313699 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.types-awscrt: 0.30.0 -> 0.31.0 (#479299)

parents f403a0ba 3f90ad0e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5,15 +5,15 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "types-awscrt";
  version = "0.30.0";
  version = "0.31.0";
  pyproject = true;

  src = fetchPypi {
    pname = "types_awscrt";
    inherit version;
    hash = "sha256-Ni/Y9errz82SLLn9gnT7N131UDGfeAMe43eerAuezHk=";
    inherit (finalAttrs) version;
    hash = "sha256-qotCFIrwhHvhTiuOo2N6NRj/qwOPjTvnCDlQ886H0/8=";
  };

  build-system = [ setuptools ];
@@ -26,8 +26,8 @@ buildPythonPackage rec {
  meta = {
    description = "Type annotations and code completion for awscrt";
    homepage = "https://github.com/youtype/types-awscrt";
    changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}";
    changelog = "https://github.com/youtype/types-awscrt/releases/tag/${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})