From 3fca3bc7e7797de58cfc4a0f207e417e747c53ea Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 19 Dec 2022 17:08:21 +0100 Subject: [PATCH] python310Packages.w3lib: add changelog to meta --- .../python-modules/w3lib/default.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/w3lib/default.nix b/pkgs/development/python-modules/w3lib/default.nix index 9c98f4d0926c..786bc7e9f260 100644 --- a/pkgs/development/python-modules/w3lib/default.nix +++ b/pkgs/development/python-modules/w3lib/default.nix @@ -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; [ ]; };