summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-10-02 17:09:43 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-10-03 14:32:32 +0200
commit7c74ebd2a631ab52618829c367e112ed24fb97a6 (patch)
treedf6e5a7fb30e5cd1daa79f84c715c9e2a52d3607 /pkgs
parentd4c74084e1e01031133850597698c49cc1620380 (diff)
downloadnixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar.gz
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar.bz2
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar.lz
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar.xz
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.tar.zst
nixpkgs-7c74ebd2a631ab52618829c367e112ed24fb97a6.zip
python3Packages.asyncpg: fix hash
The hash to the patch is broken, even with the original revision
which adds asyncpg (ee2161c5e82b2c7be9dcfcb0105e99fee1bddd3f). As the
downloaded patch seems fine, I guess that it was generated with
`nix-prefetch-url` (the hashes for `fetchpatch` usually differ) and the
issue wasn't found as the fixed-output-derivation was already in the
contributor's store.

See https://hydra.nixos.org/build/102495795

ZHF #68361
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/asyncpg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/asyncpg/default.nix b/pkgs/development/python-modules/asyncpg/default.nix
index a71ffd85367..6722d3ee0fd 100644
--- a/pkgs/development/python-modules/asyncpg/default.nix
+++ b/pkgs/development/python-modules/asyncpg/default.nix
@@ -14,7 +14,7 @@ buildPythonPackage rec {
   patches = [
     (fetchpatch {
       url = "https://github.com/MagicStack/asyncpg/commit/aaeb7076e5acb045880b46155014c0640624797e.patch";
-      sha256 = "0r6g6pvb39vzci8g67mv9rlrvavqvfz6vlv8988wv53bpz1mss3p";
+      sha256 = "0l420cmk7469wgb1xq2rxinvja1f2brb5cm4smj2s2wqgymbrf6h";
     })
   ];