2018-01-01 10:46:35 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-10 10:35:22 +00:00
|
|
|
, python
|
2018-01-01 10:46:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "regex";
|
2019-10-24 07:47:47 +01:00
|
|
|
version = "2019.08.19";
|
2018-01-01 10:46:35 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:47 +01:00
|
|
|
sha256 = "587b62d48ca359d2d4f02d486f1f0aa9a20fbaf23a9d4198c4bed72ab2f6c849";
|
2018-01-01 10:46:35 +00:00
|
|
|
};
|
|
|
|
|
2018-03-10 10:35:22 +00:00
|
|
|
postCheck = ''
|
|
|
|
echo "We now run tests ourselves, since the setuptools installer doesn't."
|
|
|
|
${python.interpreter} -c 'import test_regex; test_regex.test_main();'
|
|
|
|
'';
|
|
|
|
|
2019-02-23 14:36:02 +00:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-01 10:46:35 +00:00
|
|
|
meta = {
|
|
|
|
description = "Alternative regular expression module, to replace re";
|
2018-02-25 16:47:45 +00:00
|
|
|
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
|
2018-01-01 10:46:35 +00:00
|
|
|
license = lib.licenses.psfl;
|
|
|
|
maintainers = with lib.maintainers; [ abbradar ];
|
|
|
|
};
|
2018-02-25 16:47:45 +00:00
|
|
|
}
|