mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
42 lines
872 B
Nix
42 lines
872 B
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, chardet
|
|
, cssselect
|
|
, lxml
|
|
, timeout-decorator
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "readability-lxml";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buriy";
|
|
repo = "python-readability";
|
|
rev = "v${version}";
|
|
hash = "sha256-MKdQRety24qOG9xgIdaCJ72XEImP42SlMG6tC7bwzo4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ chardet cssselect lxml ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace 'sys.platform == "darwin"' "False"
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
timeout-decorator
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "Fast python port of arc90's readability tool";
|
|
homepage = "https://github.com/buriy/python-readability";
|
|
license = licenses.apsl20;
|
|
maintainers = with maintainers; [ siraben ];
|
|
};
|
|
}
|