pythonPackages.httptools: init at 0.0.13

wip/yesman
Chris Ostrouchov 5 years ago
parent a6de2a2a7c
commit 825364c32d
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
  1. 21
      pkgs/development/python-modules/httptools/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,21 @@
{ 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 ];
};
}

@ -468,6 +468,8 @@ in {
httpsig = callPackage ../development/python-modules/httpsig { };
httptools = callPackage ../development/python-modules/httptools { };
i3ipc = callPackage ../development/python-modules/i3ipc { };
imutils = callPackage ../development/python-modules/imutils { };

Loading…
Cancel
Save