blob: 2bc6bac0ec5faf2fd596330ab689d65e51a3e6fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "httptools";
version = "0.6.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-TpPu5K3WSTtZpcUU2pjJObJE/OSg2Iec0/RmVi9LfVw=";
};
# 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 = [ ];
};
}
|