nixpkgs/pkgs/development/python-modules/httptools/default.nix
Martin Weinelt 9e5b1b51d4 python3Packages.httptools: 0.6.4 -> 0.7.1
https://github.com/MagicStack/httptools/releases/tag/v0.7.1

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:17 +01:00

29 lines
658 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "httptools";
version = "0.7.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-q9clVpdPjnx0olllWSSnF6I2WyNsiCw/b4pF/pRwOsk=";
};
# Tests are not included in pypi tarball
doCheck = false;
pythonImportsCheck = [ "httptools" ];
meta = {
description = "Collection of framework independent HTTP protocol utils";
homepage = "https://github.com/MagicStack/httptools";
changelog = "https://github.com/MagicStack/httptools/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}