lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

grammalecte: 0.6.5 -> 2.1.1

+12 -6
+12 -6
pkgs/development/python-modules/grammalecte/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "grammalecte"; 10 - version = "0.6.5"; 10 + version = "2.1.1"; 11 11 12 12 src = fetchurl { 13 - url = "http://www.dicollecte.org/grammalecte/zip/Grammalecte-fr-v${version}.zip"; 14 - sha256 = "11byjs3ggdhia5f4vyfqfvbbczsfqimll98h98g7hlsrm7vrifb0"; 13 + url = "https://grammalecte.net/grammalecte/zip/Grammalecte-fr-v${version}.zip"; 14 + sha256 = "076jv3ywdgqqzg92bfbagc7ypy08xjq5zn4vgna6j9350fkfqhzn"; 15 15 }; 16 16 17 + patchPhase = '' 18 + runHook prePatch 19 + substituteInPlace grammalecte-server.py --replace sys.version_info.major sys.version_info 20 + runHook postPatch 21 + ''; 22 + 17 23 propagatedBuildInputs = [ bottle ]; 18 24 19 - preBuild = "cd .."; 25 + sourceRoot = "."; 20 26 21 27 disabled = !isPy3k; 22 28 23 29 meta = { 24 - description = "Grammalecte is an open source grammar checker for the French language"; 30 + description = "An open source grammar and typographic corrector for the French language"; 25 31 homepage = "https://grammalecte.net"; 26 - license = with lib.licenses; [ gpl3 ]; 32 + license = lib.licenses.gpl3Only; 27 33 maintainers = with lib.maintainers; [ apeyroux ]; 28 34 }; 29 35 }