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
663 B
Nix
Raw Normal View History

2018-01-01 11:46:35 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
2018-01-01 11:46:35 +01:00
}:
buildPythonPackage rec {
pname = "regex";
version = "2023.12.25";
format = "setuptools";
disabled = pythonOlder "3.6";
2018-01-01 11:46:35 +01:00
src = fetchPypi {
inherit pname version;
hash = "sha256-KRcaoSjaaa/fS95BLVvtwzXyyo/P5EiQOFd9BfFhgeU=";
2018-01-01 11:46:35 +01:00
};
2021-04-23 16:49:06 +02:00
checkPhase = ''
${python.interpreter} -m unittest
'';
pythonImportsCheck = [
"regex"
];
meta = with lib; {
2018-01-01 11:46:35 +01: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 11:46:35 +01:00
};
}