Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
974 B
Nix
45 lines
974 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "exrex";
|
|
version = "0.11.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asciimoo";
|
|
repo = "exrex";
|
|
# https://github.com/asciimoo/exrex/issues/68
|
|
rev = "239e4da37ff3a66d8b4b398d189299ae295594c3";
|
|
hash = "sha256-Tn/XIIy2wnob+1FmP9bdD9+gHLQZDofF2c1FqOijKWA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "version=about['__version__']," "version='${version}',"
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
dontWrapPythonPrograms = true;
|
|
|
|
# Project thas no released tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "exrex" ];
|
|
|
|
meta = with lib; {
|
|
description = "Irregular methods on regular expressions";
|
|
homepage = "https://github.com/asciimoo/exrex";
|
|
license = with licenses; [ agpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|