nixpkgs/pkgs/development/python-modules/regex/default.nix

32 lines
719 B
Nix
Raw Normal View History

2018-01-01 11:46:35 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, python
2018-01-01 11:46:35 +01:00
}:
buildPythonPackage rec {
pname = "regex";
2020-08-16 19:31:14 +02:00
version = "2020.7.14";
2018-01-01 11:46:35 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:14 +02:00
sha256 = "3a3af27a8d23143c49a3420efe5b3f8cf1a48c6fc8bc6856b03f638abc1833bb";
2018-01-01 11:46:35 +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();'
'';
# No tests in archive
doCheck = false;
2018-01-01 11:46:35 +01:00
meta = {
description = "Alternative regular expression module, to replace re";
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
2018-01-01 11:46:35 +01:00
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ abbradar ];
};
}