13 inherit pname version;
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-dhAB0VbBGsSrgYGUlZEYaKA6sQB/f9Bb3alsRuQ8opo=";
26 # the version mangling in mautrix_signal/get_version.py interacts badly with pythonRelaxDepsHook
27 substituteInPlace setup.py \
28 --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 ];