nixpkgs/pkgs/development/python-modules/regex/default.nix
2018-07-26 12:43:07 +02:00

29 lines
674 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "regex";
version = "2018.07.11";
src = fetchPypi {
inherit pname version;
sha256 = "9308dbce8e5ff4ee06b172a777f6c7f650a5835a5ad41a6080eb501639c27a2f";
};
postCheck = ''
echo "We now run tests ourselves, since the setuptools installer doesn't."
${python.interpreter} -c 'import test_regex; test_regex.test_main();'
'';
meta = {
description = "Alternative regular expression module, to replace re";
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ abbradar ];
};
}