2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, pythonPackages }:
|
2017-02-26 08:43:39 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-02 12:31:49 +01:00
|
|
|
version = "0.7.8";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mwic";
|
2017-02-26 08:43:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/jwilk/mwic/releases/download/${version}/${pname}-${version}.tar.gz";
|
2020-04-02 12:31:49 +01:00
|
|
|
sha256 = "0nnhziz9v523hpciylnxfajmxabh2ig5iawzwrfpf7aww70v330x";
|
2017-02-26 08:43:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags=["PREFIX=\${out}"];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pythonPackages.wrapPython
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pyenchant regex ];
|
|
|
|
|
|
|
|
postFixup = ''
|
2020-08-11 00:07:19 +01:00
|
|
|
wrapPythonPrograms
|
2017-02-26 08:43:39 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://jwilk.net/software/mwic";
|
2017-02-26 08:43:39 +00:00
|
|
|
description = "spell-checker that groups possible misspellings and shows them in their contexts";
|
|
|
|
license = licenses.mit;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2017-02-26 08:43:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|