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

28 lines
854 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, ndg-httpsclient, netifaces, pyasn1
, pyopenssl, requests, six, urllib3 }:
buildPythonPackage rec {
pname = "advocate";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0g9mbalg0hz74ciiaymg1sml0x819rcrqcl0cncpjhik8471gw8v";
};
propagatedBuildInputs =
[ requests urllib3 six pyasn1 pyopenssl ndg-httpsclient netifaces ];
# TODO FIXME
doCheck = false;
meta = with lib; {
description =
"A wrapper around the requests library for safely making HTTP requests on behalf of a third party";
homepage = "https://github.com/JordanMilne/Advocate";
};
}