depot/nix/pkgs/baserow/backend/pynixify/packages/httptools/default.nix

24 lines
639 B
Nix
Raw Normal View History

2021-12-21 00:18:16 +00:00
# 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.
2022-11-02 02:02:11 +00:00
{ buildPythonPackage, fetchPypi, lib }:
2021-12-21 00:18:16 +00:00
buildPythonPackage rec {
2022-11-02 02:02:11 +00:00
pname = "httptools";
version = "0.2.0";
2021-12-21 00:18:16 +00:00
src = fetchPypi {
inherit pname version;
2022-11-02 02:02:11 +00:00
sha256 = "180y8yrn6wcph4i6if6n34805ijd8y4kvc0aadx2sranpqk50l4l";
2021-12-21 00:18:16 +00:00
};
# TODO FIXME
doCheck = false;
meta = with lib; {
2022-11-02 02:02:11 +00:00
description = "A collection of framework independent HTTP protocol utils.";
homepage = "https://github.com/MagicStack/httptools";
2021-12-21 00:18:16 +00:00
};
}