blob: 9d65bf4a0717a4c4e2e1009a8d2d7a03a7c3069b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "exrex";
version = "0.11.0";
pyproject = true;
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 = {
description = "Irregular methods on regular expressions";
homepage = "https://github.com/asciimoo/exrex";
license = with lib.licenses; [ agpl3Plus ];
maintainers = with lib.maintainers; [ fab ];
};
}
|