nixpkgs/pkgs/development/python-modules/regex/default.nix
2018-09-01 10:41:37 +02:00

29 lines
674 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "regex";
version = "2018.08.29";
src = fetchPypi {
inherit pname version;
sha256 = "b73cea07117dca888b0c3671770b501bef19aac9c45c8ffdb5bea2cca2377b0a";
};
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 ];
};
}