From 7fda891d9fda0b23dfc8d46eabf5c1148669b399 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 29 Nov 2020 15:04:25 +0100 Subject: [PATCH] python3Packages.codespell: 1.17.1 -> 2.0.0 --- pkgs/development/python-modules/codespell/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/codespell/default.nix b/pkgs/development/python-modules/codespell/default.nix index 70c634737635..e3d4da9a830b 100644 --- a/pkgs/development/python-modules/codespell/default.nix +++ b/pkgs/development/python-modules/codespell/default.nix @@ -1,11 +1,11 @@ { lib, buildPythonApplication, fetchPypi, pytest, chardet }: buildPythonApplication rec { pname = "codespell"; - version = "1.17.1"; + version = "2.0.0"; src = fetchPypi { inherit pname version; - sha256 = "08ydpw8pim7rhg1x2n711hxf2y6553nx0c0aqhfi3p4wdgcfr8i5"; + sha256 = "dd9983e096b9f7ba89dd2d2466d1fc37231d060f19066331b9571341363c77b8"; }; checkInputs = [ pytest chardet ];