2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
pythonOlder,
|
|
|
|
setuptools,
|
2021-03-09 03:18:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "exrex";
|
2023-03-15 16:39:30 +00:00
|
|
|
version = "0.11.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
pyproject = true;
|
2023-03-15 16:39:30 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "asciimoo";
|
|
|
|
repo = "exrex";
|
2023-03-15 16:39:30 +00:00
|
|
|
# https://github.com/asciimoo/exrex/issues/68
|
|
|
|
rev = "239e4da37ff3a66d8b4b398d189299ae295594c3";
|
|
|
|
hash = "sha256-Tn/XIIy2wnob+1FmP9bdD9+gHLQZDofF2c1FqOijKWA=";
|
2021-03-09 03:18:52 +00:00
|
|
|
};
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "version=about['__version__']," "version='${version}',"
|
|
|
|
'';
|
2023-03-04 12:14:45 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2024-01-02 11:29:13 +00:00
|
|
|
|
|
|
|
dontWrapPythonPrograms = true;
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
# Projec thas no released tests
|
|
|
|
doCheck = false;
|
2023-03-15 16:39:30 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "exrex" ];
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Irregular methods on regular expressions";
|
|
|
|
homepage = "https://github.com/asciimoo/exrex";
|
|
|
|
license = with licenses; [ agpl3Plus ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|