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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
661 B
Nix
Raw Normal View History

2018-01-01 10:46:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
2018-01-01 10:46:35 +00:00
}:
buildPythonPackage rec {
pname = "regex";
version = "2022.3.2";
format = "setuptools";
disabled = pythonOlder "3.6";
2018-01-01 10:46:35 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-eeWvH/JYvA/gvdb2m8SuM5NaiY48vvu8zyLoiif6BTs=";
2018-01-01 10:46:35 +00:00
};
2021-04-23 14:49:06 +00:00
checkPhase = ''
${python.interpreter} -m unittest
'';
pythonImportsCheck = [
"regex"
];
meta = with lib; {
2018-01-01 10:46:35 +00:00
description = "Alternative regular expression module, to replace re";
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
license = licenses.psfl;
maintainers = with maintainers; [ abbradar ];
2018-01-01 10:46:35 +00:00
};
}