about summary refs log tree commit diff
path: root/pkgs/development/python-modules/grammalecte/default.nix
blob: 485c5b5ef07309fc9dd2759f64d330e4bdd50549 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchurl
, bottle
, isPy3k
}:

buildPythonPackage rec {
  pname = "grammalecte";
  version = "0.6.1";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://www.dicollecte.org/grammalecte/zip/Grammalecte-fr-v${version}.zip";
    sha256 = "0y2ck6pkd2p3cbjlxxvz3x5rnbg3ghfx97n13302rnab66cy4zkh";
  };

  propagatedBuildInputs = [ bottle ];

  preBuild = "cd ..";
  postInstall = ''
    rm $out/bin/bottle.py
  '';

  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 ];
  };
}