1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "httptools";
8 version = "0.0.13";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "e00cbd7ba01ff748e494248183abc6e153f49181169d8a3d41bb49132ca01dfc";
13 };
14
15 meta = with lib; {
16 description = "A collection of framework independent HTTP protocol utils";
17 homepage = https://github.com/MagicStack/httptools;
18 license = licenses.mit;
19 maintainers = [ maintainers.costrouc ];
20 };
21}