c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
43 lines
963 B
Nix
43 lines
963 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, lxml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "justext";
|
|
version = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miso-belica";
|
|
repo = "jusText";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-WNxDoM5666tEHS9pMl5dOoig4S7dSYaCLZq71tehWqw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# patch out coverage report
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace " --cov=justext --cov-report=term-missing --no-cov-on-fail" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "justext" ];
|
|
|
|
meta = with lib; {
|
|
description = "Heuristic based boilerplate removal tool";
|
|
homepage = "https://github.com/miso-belica/jusText";
|
|
changelog = "https://github.com/miso-belica/jusText/blob/v${version}/CHANGELOG.rst";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ jokatzke ];
|
|
};
|
|
}
|