nixpkgs/pkgs/development/python-modules/httptools/default.nix
2019-05-08 07:41:50 -04:00

22 lines
483 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "httptools";
version = "0.0.13";
src = fetchPypi {
inherit pname version;
sha256 = "e00cbd7ba01ff748e494248183abc6e153f49181169d8a3d41bb49132ca01dfc";
};
meta = with lib; {
description = "A collection of framework independent HTTP protocol utils";
homepage = https://github.com/MagicStack/httptools;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}