fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
946 B
Nix
40 lines
946 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
}:
|
|
|
|
let
|
|
pname = "boilerpy3";
|
|
version = "1.0.7";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jmriebold";
|
|
repo = "BoilerPy3";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dhAB0VbBGsSrgYGUlZEYaKA6sQB/f9Bb3alsRuQ8opo=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|