2017-02-26 08:43:39 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-23 21:36:37 +01:00
|
|
|
version = "0.7.6";
|
2017-02-26 08:43:39 +00:00
|
|
|
name = "mwic-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/jwilk/mwic/releases/download/${version}/${name}.tar.gz";
|
2018-09-23 21:36:37 +01:00
|
|
|
sha256 = "0dl56979i54hrmz5l27c4q1f7jd1bpkmi7sm86946dagi4l1ns3i";
|
2017-02-26 08:43:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags=["PREFIX=\${out}"];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pythonPackages.wrapPython
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pyenchant regex ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
buildPythonPath "$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://jwilk.net/software/mwic;
|
|
|
|
description = "spell-checker that groups possible misspellings and shows them in their contexts";
|
|
|
|
license = licenses.mit;
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-02-26 08:43:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|