My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/httpcore/default.nix

35 lines
730 B

{ stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy27
, h11
, sniffio
}:
buildPythonPackage rec {
pname = "httpcore";
version = "0.10.2";
disabled = isPy27;
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
sha256 = "00gn8nfv814rg6fj7xv97mrra3fvx6fzjcgx9y051ihm6hxljdsi";
};
propagatedBuildInputs = [ h11 sniffio ];
# tests require pythonic access to mitmproxy, which isn't (yet?) packaged as
# a pythonPackage.
doCheck = false;
pythonImportsCheck = [ "httpcore" ];
meta = with stdenv.lib; {
description = "A minimal HTTP client";
homepage = "https://github.com/encode/httpcore";
license = licenses.bsd3;
maintainers = [ maintainers.ris ];
};
}