Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.asyncstdlib: 3.12.5 -> 3.13.0 (#350846)

authored by Fabian Affolter and committed by GitHub 67c56d9e 0ad46847

+9 -6
+3 -3
pkgs/by-name/po/poutine/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "poutine"; 11 - version = "0.13.0"; 11 + version = "0.15.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "boostsecurityio"; 15 15 repo = "poutine"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-9vbK2tc57e/YNfhSVbCMxnzOmmahr9T3x5Tt7GQjVnc="; 17 + hash = "sha256-YBoGsexYT2/lAWEajMVa/xNRBv1R1i0hB6pTAlk43E0="; 18 18 }; 19 19 20 - vendorHash = "sha256-HYuyGSatUOch73IKc7/9imhwz0Oz6Mrccs2HKVQtaVE="; 20 + vendorHash = "sha256-CZLzIGu6jj4JXmKJaWmyeRvcRNjBYecblW47kcsg5Nw="; 21 21 22 22 ldflags = [ 23 23 "-s"
+2 -2
pkgs/development/python-modules/asyncstdlib/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "asyncstdlib"; 12 - version = "3.12.5"; 12 + version = "3.13.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.9"; ··· 18 18 owner = "maxfischer2781"; 19 19 repo = "asyncstdlib"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-RQoq+Okzan4/Q51mlL1EPyZuBSr3+xGWEPSAnZYJGyA="; 21 + hash = "sha256-0VEJ26MP6gIgPvjan7LgCEtSLpg4wXhmFNPGZGntPD8="; 22 22 }; 23 23 24 24 build-system = [ flit-core ];
+4 -1
pkgs/development/python-modules/meteoswiss-async/default.nix
··· 26 26 hash = "sha256-xFvfyLZvBfnbzShKN+94piNUVjV1cfi4jWpc/Xw6XG4="; 27 27 }; 28 28 29 - pythonRelaxDeps = [ "aiohttp" ]; 29 + pythonRelaxDeps = [ 30 + "aiohttp" 31 + "asyncstdlib" 32 + ]; 30 33 31 34 build-system = [ setuptools ]; 32 35