about summary refs log tree commit diff
path: root/pkgs/development/python-modules/exrex/default.nix
blob: fd7982ee778c37e58d772ac15ac4564fb8d16a10 (plain) (blame)
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
42
43
44
45
46
47
{ 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;

  # Projec 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 ];
  };
}