23 lines
639 B
Nix
23 lines
639 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httptools";
|
|
version = "0.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "180y8yrn6wcph4i6if6n34805ijd8y4kvc0aadx2sranpqk50l4l";
|
|
};
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A collection of framework independent HTTP protocol utils.";
|
|
homepage = "https://github.com/MagicStack/httptools";
|
|
};
|
|
}
|