12 inherit pname version;
13 format = "setuptools";
15 disabled = pythonOlder "3.6";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-dhAB0VbBGsSrgYGUlZEYaKA6sQB/f9Bb3alsRuQ8opo=";
25 # the version mangling in mautrix_signal/get_version.py interacts badly with pythonRelaxDepsHook
26 substituteInPlace setup.py \
27 --replace '>=3.6.*' '>=3.6'
31 pythonImportsCheck = [ "boilerpy3" ];
34 homepage = "https://github.com/jmriebold/BoilerPy3";
35 description = "Python port of Boilerpipe library";
36 changelog = "https://github.com/jmriebold/BoilerPy3/releases/tag/v${version}";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ happysalada ];