depot/third_party/nixpkgs/pkgs/development/python-modules/dugong/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

37 lines
871 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pythonAtLeast
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dugong";
version = "3.8.1";
disabled = pythonOlder "3.3";
src = fetchFromGitHub {
owner = "python-dugong";
repo = "python-dugong";
rev = "release-${version}";
sha256 = "1063c1779idc5nrjzfv5w1xqvyy3crapb2a2xll9y6xphxclnkjc";
};
nativeCheckInputs = [
pytestCheckHook
];
# Lots of tests hang during teardown with:
# ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:2396)
doCheck = pythonOlder "3.10";
pythonImportsCheck = [ "dugong" ];
meta = with lib; {
description = "HTTP 1.1 client designed for REST-ful APIs";
homepage = "https://github.com/python-dugong/python-dugong/";
license = with licenses; [ psfl asl20 ];
maintainers = with maintainers; [ ];
};
}