My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/whoosh/default.nix

30 lines
800 B

{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "Whoosh";
version = "2.7.4";
src = fetchPypi {
inherit pname version;
sha256 = "10qsqdjpbc85fykc1vgcs8xwbgn4l2l52c8d83xf1q59pwyn79bw";
};
checkInputs = [ pytest ];
# Wrong encoding
postPatch = ''
rm tests/test_reading.py
substituteInPlace setup.cfg --replace "[pytest]" "[tool:pytest]"
'';
checkPhase = ''
# FIXME: test_minimize_dfa fails on python 3.6
py.test -k "not test_timelimit and not test_minimize_dfa"
'';
meta = with lib; {
description = "Fast, pure-Python full text indexing, search, and spell
checking library.";
homepage = "https://bitbucket.org/mchaput/whoosh";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}