3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/regex/default.nix

29 lines
674 B
Nix
Raw Normal View History

2018-01-01 10:46:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, python
2018-01-01 10:46:35 +00:00
}:
buildPythonPackage rec {
pname = "regex";
version = "2018.11.03";
2018-01-01 10:46:35 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "4a8a645072ff7acc96b1a92c76863e324089cd3fd00bc3e41add4a7016c06761";
2018-01-01 10:46:35 +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";
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
2018-01-01 10:46:35 +00:00
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ abbradar ];
};
}