mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.httptools: init at 0.0.13
This commit is contained in:
parent
a6de2a2a7c
commit
825364c32d
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/httptools/default.nix
Normal file
21
pkgs/development/python-modules/httptools/default.nix
Normal file
|
@ -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…
Reference in a new issue