diff --git a/pkgs/development/python-modules/httptools/default.nix b/pkgs/development/python-modules/httptools/default.nix index 623be1ccee18..c49e7bb5159b 100644 --- a/pkgs/development/python-modules/httptools/default.nix +++ b/pkgs/development/python-modules/httptools/default.nix @@ -14,15 +14,18 @@ buildPythonPackage rec { hash = "sha256-n8bkCa04y9aLF3zVFY/EBCx5a4LKiNmex48HvtbGt5Y="; }; - # tests are not included in pypi tarball + # Tests are not included in pypi tarball doCheck = false; - pythonImportsCheck = [ "httptools" ]; + pythonImportsCheck = [ + "httptools" + ]; meta = with lib; { description = "A collection of framework independent HTTP protocol utils"; homepage = "https://github.com/MagicStack/httptools"; + changelog = "https://github.com/MagicStack/httptools/releases/tag/v${version}"; license = licenses.mit; - maintainers = [ ]; + maintainers = with maintainers; [ ]; }; }