summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-27 09:29:11 +0700
committerGitHub <noreply@github.com>2021-07-27 09:29:11 +0700
commit0ffdd74547be88eebd45ca6f3d5487b4a84ae232 (patch)
treeb5225af754b91810340799601e74ece4c2b02b09 /pkgs/development
parent3ddfb199d8f7cdbae7c1be07ea9782fd0e2113c8 (diff)
parentefd3e4975f19748e86f7f19ad88c255f65d0c869 (diff)
downloadnixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar.gz
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar.bz2
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar.lz
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar.xz
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.tar.zst
nixpkgs-0ffdd74547be88eebd45ca6f3d5487b4a84ae232.zip
Merge pull request #131582 from cpcloud/bump-gast
gast: 0.5.0 -> 0.5.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/gast/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/gast/default.nix b/pkgs/development/python-modules/gast/default.nix
index 6d18a7ba6d1..f374378d986 100644
--- a/pkgs/development/python-modules/gast/default.nix
+++ b/pkgs/development/python-modules/gast/default.nix
@@ -1,28 +1,18 @@
 { lib
 , fetchFromGitHub
-, fetchpatch
 , buildPythonPackage
 , astunparse
 }:
 
 buildPythonPackage rec {
   pname = "gast";
-  version = "0.5.0";
-
-  # TODO: remove this patch on the next release, this fixes a bug with parsing
-  # assignment expressions e.g., `x := 1`.
-  patches = [
-    (fetchpatch {
-      url = "https://github.com/serge-sans-paille/gast/commit/3cc9b4d05a80e4bb42882de00df314aaa1e6e591.patch";
-      sha256 = "0ylpn0x0a4y6139vd048blsh77yd08npjcn4b5ydf89xnji5mlm1";
-    })
-  ];
+  version = "0.5.1";
 
   src = fetchFromGitHub {
     owner = "serge-sans-paille";
     repo = "gast";
     rev = version;
-    sha256 = "0qsg36knv0k2ppzbr5m4w6spxxw7a77lw88y8vjx7m176bajnsbw";
+    sha256 = "1gph45frnj47lfr6idiyxrb3gk7vzc9rni9cijmcyz10dyx5kgwa";
   };
 
   checkInputs = [ astunparse ];