summary refs log tree commit diff
path: root/pkgs/development/python-modules/boilerpy3/default.nix
blob: 49573b94ae81d3cf21fbab01c0d7aa5e2331ee7a (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:

let
  pname = "boilerpy3";
  version = "1.0.6";
in
buildPythonPackage {
  inherit pname version;
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "jmriebold";
    repo = "BoilerPy3";
    rev = "refs/tags/v${version}";
    hash = "sha256-hl2+XpSvVaHpq9RGMnSzWHCA8TtBQnYwDtEOia1Rl/A=";
  };

  postPatch = ''
    # the version mangling in mautrix_signal/get_version.py interacts badly with pythonRelaxDepsHook
    substituteInPlace setup.py \
      --replace '>=3.6.*' '>=3.6'
  '';


  pythonImportsCheck = [ "boilerpy3" ];

  meta = with lib; {
    homepage = "https://github.com/jmriebold/BoilerPy3";
    description = "Python port of Boilerpipe library";
    changelog = "https://github.com/jmriebold/BoilerPy3/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ happysalada ];
  };
}