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";
|
2018-08-30 16:43:01 +01:00
|
|
|
version = "2018.08.29";
|
2018-01-01 10:46:35 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-30 16:43:01 +01:00
|
|
|
sha256 = "b73cea07117dca888b0c3671770b501bef19aac9c45c8ffdb5bea2cca2377b0a";
|
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();'
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|