nixpkgs/pkgs/applications/misc/mwic/default.nix
R. RyanTM 4dc0adcb59 mwic: 0.7.6 -> 0.7.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mwic/versions
2018-11-19 01:09:04 -08:00

32 lines
763 B
Nix

{ stdenv, fetchurl, pythonPackages }:
stdenv.mkDerivation rec {
version = "0.7.7";
name = "mwic-${version}";
src = fetchurl {
url = "https://github.com/jwilk/mwic/releases/download/${version}/${name}.tar.gz";
sha256 = "0l4anwiiqclymx0awwn4hzaj8n26ycg8nz76wjphsyscn7z2awad";
};
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; [ ];
};
}