python310Packages.w3lib: add changelog to meta

This commit is contained in:
Fabian Affolter
2022-12-19 17:08:21 +01:00
parent 9159658fae
commit 3fca3bc7e7
@@ -11,21 +11,29 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "sha256-E98V+MF7Fj3g/V+qiSwa0UPhkN/L25hTS7l16zfGx9Y=";
hash = "sha256-E98V+MF7Fj3g/V+qiSwa0UPhkN/L25hTS7l16zfGx9Y=";
};
propagatedBuildInputs = [ six ];
propagatedBuildInputs = [
six
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "w3lib" ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"w3lib"
];
disabledTests = [
"test_add_or_replace_parameter"
];
meta = with lib; {
description = "A library of web-related functions";
description = "Library of web-related functions";
homepage = "https://github.com/scrapy/w3lib";
changelog = "https://github.com/scrapy/w3lib/blob/v${version}/NEWS";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};