nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

codespell: 1.16.0 -> 1.17.1

+2 -2
+2 -2
pkgs/development/python-modules/codespell/default.nix
··· 1 1 { lib, buildPythonApplication, fetchPypi, pytest, chardet }: 2 2 buildPythonApplication rec { 3 3 pname = "codespell"; 4 - version = "1.16.0"; 4 + version = "1.17.1"; 5 5 6 6 src = fetchPypi { 7 7 inherit pname version; 8 - sha256 = "1s9dl07ib77gq0iq26mrdpl1c46nkfm7nlhqwxpx5vvs6a1pqfxz"; 8 + sha256 = "08ydpw8pim7rhg1x2n711hxf2y6553nx0c0aqhfi3p4wdgcfr8i5"; 9 9 }; 10 10 11 11 checkInputs = [ pytest chardet ];