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

python37Packages.typed-ast: 1.4.0 -> 1.4.1

authored by

Mario Rodas and committed by
Frederik Rietdijk
ea25fc17 ced8ec84

+2 -2
+2 -2
pkgs/development/python-modules/typed-ast/default.nix
··· 1 1 { buildPythonPackage, fetchFromGitHub, lib, pythonOlder }: 2 2 buildPythonPackage rec { 3 3 pname = "typed-ast"; 4 - version = "1.4.0"; 4 + version = "1.4.1"; 5 5 src = fetchFromGitHub{ 6 6 owner = "python"; 7 7 repo = "typed_ast"; 8 8 rev = version; 9 - sha256 = "0l0hz809f7i356kmqkvfsaswiidb98j9hs9rrjnfawzqcbffzgyb"; 9 + sha256 = "086r9qhls6mz1w72a6d1ld3m4fbkxklf6mgwbs8wpw0zlxjm7y40"; 10 10 }; 11 11 # Only works with Python 3.3 and newer; 12 12 disabled = pythonOlder "3.3";