Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / httptools / default.nix
blobed25195e3f28864cbbfe997fcfe880fccbc34412
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 }:
7 buildPythonPackage rec {
8   pname = "httptools";
9   version = "0.1.1";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "41b573cf33f64a8f8f3400d0a7faf48e1888582b6f6e02b82b9bd4f0bf7497ce";
15   };
17   # tests are not included in pypi tarball
18   doCheck = false;
20   pythonImportsCheck = [ "httptools" ];
22   meta = with lib; {
23     description = "A collection of framework independent HTTP protocol utils";
24     homepage = "https://github.com/MagicStack/httptools";
25     license = licenses.mit;
26     maintainers = [ maintainers.costrouc ];
27   };