1 { lib, stdenv, fetchurl, pythonPackages }:
3 stdenv.mkDerivation rec {
8 url = "https://github.com/jwilk/mwic/releases/download/${version}/${pname}-${version}.tar.gz";
9 sha256 = "sha256-dmIHPehkxpSb78ymVpcPCu4L41coskrHQOg067dprOo=";
12 makeFlags=["PREFIX=\${out}"];
15 pythonPackages.wrapPython
18 propagatedBuildInputs = with pythonPackages; [ pyenchant regex ];
25 homepage = "http://jwilk.net/software/mwic";
26 description = "spell-checker that groups possible misspellings and shows them in their contexts";
28 license = licenses.mit;
29 maintainers = with maintainers; [ matthiasbeyer ];