python310Packages.httptools: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-08-17 00:38:07 +02:00 committed by GitHub
parent 5a5301a2b9
commit 4015ea192a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; [ ];
};
}