2018-01-01 11:46:35 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-10 11:35:22 +01:00
|
|
|
, python
|
2018-01-01 11:46:35 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "regex";
|
2019-12-29 10:28:09 +01:00
|
|
|
version = "2019.12.20";
|
2018-01-01 11:46:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-29 10:28:09 +01:00
|
|
|
sha256 = "106e25a841921d8259dcef2a42786caae35bc750fb996f830065b3dfaa67b77e";
|
2018-01-01 11:46:35 +01:00
|
|
|
};
|
|
|
|
|
2018-03-10 11:35:22 +01: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 15:36:02 +01:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-01 11:46:35 +01:00
|
|
|
meta = {
|
|
|
|
description = "Alternative regular expression module, to replace re";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
|
2018-01-01 11:46:35 +01:00
|
|
|
license = lib.licenses.psfl;
|
|
|
|
maintainers = with lib.maintainers; [ abbradar ];
|
|
|
|
};
|
2018-02-25 17:47:45 +01:00
|
|
|
}
|