depot/third_party/nixpkgs/pkgs/development/python-modules/boilerpy3/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

40 lines
941 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 ];
};
}