Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / httptools / default.nix
blob116ab28dc9895b3eaca44cf07f8ed1b41483178a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "httptools";
9   version = "0.6.1";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-xuJsMEVWALldlLG4NghROOgvF3NRRU7oQcFI+TqbrVo=";
17   };
19   # Tests are not included in pypi tarball
20   doCheck = false;
22   pythonImportsCheck = [
23     "httptools"
24   ];
26   meta = with lib; {
27     description = "A collection of framework independent HTTP protocol utils";
28     homepage = "https://github.com/MagicStack/httptools";
29     changelog = "https://github.com/MagicStack/httptools/releases/tag/v${version}";
30     license = licenses.mit;
31     maintainers = with maintainers; [ ];
32   };