about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycangjie/default.nix
blob: b3e31a9bc788934caff8f46e58e5019a604d6429 (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
34
35
36
{ stdenv, fetchurl, bash, autoconf, automake, libtool, pkgconfig, libcangjie
, sqlite, buildPythonPackage, cython
}:

let
  rev = "361bb413203fd43bab624d98edf6f7d20ce6bfd3";
in buildPythonPackage {
  pname = "pycangjie";
  version = "1.3_rev_${rev}";
  format = "other";

  src = fetchurl {
    url = "https://github.com/Cangjians/pycangjie/archive/${rev}.tar.gz";
    sha256 = "12yi09nyffmn4va7lzk4irw349qzlbxgsnb89dh15cnw0xmrin05";
  };

  nativeBuildInputs = [ pkgconfig libtool autoconf automake cython ];
  buildInputs = [ libcangjie sqlite ];

  preConfigure = ''
    find . -name '*.sh' -exec sed -e 's@#!/bin/bash@${bash}/bin/bash@' -i '{}' ';'
    sed -i 's@/usr@${libcangjie}@' tests/__init__.py
  '';

  configureScript = "./autogen.sh";

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Python wrapper to libcangjie";
    homepage = http://cangjians.github.io/projects/pycangjie/;
    license = licenses.lgpl3Plus;
    maintainers = [ maintainers.linquize ];
    platforms = platforms.all;
  };
}