nixpkgs/pkgs/applications/misc/mwic/default.nix

32 lines
781 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
stdenv.mkDerivation rec {
2020-04-02 11:31:49 +00:00
version = "0.7.8";
pname = "mwic";
src = fetchurl {
url = "https://github.com/jwilk/mwic/releases/download/${version}/${pname}-${version}.tar.gz";
2020-04-02 11:31:49 +00:00
sha256 = "0nnhziz9v523hpciylnxfajmxabh2ig5iawzwrfpf7aww70v330x";
};
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;
maintainers = with maintainers; [ matthiasbeyer ];
};
}