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

29 lines
674 B
Nix
Raw Normal View History

2018-01-01 11:46:35 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2018-03-10 11:35:22 +01:00
, python
2018-01-01 11:46:35 +01:00
}:
buildPythonPackage rec {
pname = "regex";
2018-06-21 07:37:18 +02:00
version = "2018.06.21";
2018-01-01 11:46:35 +01:00
src = fetchPypi {
inherit pname version;
2018-06-21 07:37:18 +02:00
sha256 = "b172583f0c5f104e059a30dd6a1f9d20693031b156558590a745d6cc3192e283";
2018-01-01 11:46:35 +01:00
};
2018-03-10 11:35:22 +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();'
'';
2018-01-01 11:46:35 +01:00
meta = {
description = "Alternative regular expression module, to replace re";
2018-02-25 19:47:45 +03:00
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
2018-01-01 11:46:35 +01:00
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ abbradar ];
};
2018-02-25 19:47:45 +03:00
}