37 lines
885 B
Nix
37 lines
885 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchurl
|
|
, bottle
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "grammalecte";
|
|
version = "0.5.18";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.dicollecte.org/grammalecte/zip/Grammalecte-fr-v${version}.zip";
|
|
sha256 = "0izfsqsj8w4awhmwmn4x8wwpqsmqbnfvfafzk93i6yj0l3fn3i97";
|
|
};
|
|
|
|
propagatedBuildInputs = [ bottle ];
|
|
|
|
preBuild = "cd ..";
|
|
postInstall = ''
|
|
mkdir $out/bin
|
|
cp $out/cli.py $out/bin/gramalecte
|
|
cp $out/server.py $out/bin/gramalected
|
|
chmod a+rx $out/bin/gramalecte
|
|
chmod a+rx $out/bin/gramalected
|
|
'';
|
|
|
|
disabled = !isPy3k;
|
|
|
|
meta = {
|
|
description = "Grammalecte is an open source grammar checker for the French language";
|
|
homepage = https://dicollecte.org/grammalecte/;
|
|
license = with lib.licenses; [ gpl3 ];
|
|
maintainers = with lib.maintainers; [ apeyroux ];
|
|
};
|
|
}
|