summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-28 18:01:16 +0000
committerGitHub <noreply@github.com>2021-07-28 18:01:16 +0000
commit6fcda9f1ec27db14412a2103281b4b14f806066a (patch)
tree10d6f3aa9b4fc34ca27e907a5a7d199e6fca15b2 /pkgs/development/compilers
parenta1d3be1d4226b7312ce6a8aa8e96a0cdbbf74243 (diff)
parent4ecfa58c97863796f407b823049bcf1bd1866aac (diff)
downloadnixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar.gz
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar.bz2
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar.lz
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar.xz
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.tar.zst
nixpkgs-6fcda9f1ec27db14412a2103281b4b14f806066a.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/vyper/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/compilers/vyper/default.nix b/pkgs/development/compilers/vyper/default.nix
index 74c2503523e..6d1f7a374da 100644
--- a/pkgs/development/compilers/vyper/default.nix
+++ b/pkgs/development/compilers/vyper/default.nix
@@ -14,20 +14,21 @@ in
 
 buildPythonPackage rec {
   pname = "vyper";
-  version = "0.2.11";
+  version = "0.2.15";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "e763561a161c35c03b92a0c176096dd9b4c78ab003c2f08324d443f459b3de84";
+    sha256 = "sha256-cNnKHVKwIx0miC2VhGYBzcSckTnyWYmjNzW0bEzP4bU=";
   };
 
   nativeBuildInputs = [ pytest-runner ];
 
+  # Replace the dynamic commit hash lookup with the hash from the tag
   postPatch = ''
     substituteInPlace setup.py \
       --replace 'asttokens==' 'asttokens>=' \
       --replace 'subprocess.check_output("git rev-parse HEAD".split())' "' '" \
-      --replace 'commithash.decode("utf-8").strip()' "'069936fa3fee8646ff362145593128d7ef07da38'"
+      --replace 'commithash.decode("utf-8").strip()' "'6e7dba7a8b5f29762d3470da4f44634b819c808d'"
   '';
 
   propagatedBuildInputs = [