nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
Danielle Lancashire 566927fc8d
maintainers: remove endocrimes
Please accept this letter as formal notice of my resignation from the
position of "Community Member" at DeterminateSystems.

Thank you for giving me the opportunity to work in this position - I
have thoroughly enjoyed being frustrated and saddened whenever
interacting with the DetSys community. However, I've decided it is time for me
to move on to another community that will hopefully be less tolerant of
willful hate and sexism.

~Danielle

Signed-off-by: Danielle Lancashire <dani@builds.terrible.systems>
2024-04-27 01:11:23 +02:00

42 lines
850 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "rfc6555";
version = "0.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sethmlarson";
repo = pname;
rev = "v${version}";
hash = "sha256-Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM=";
};
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = [
# Disabling tests that require a functional DNS IPv{4,6} stack to pass
"test_create_connection_has_proper_timeout"
];
pythonImportsCheck = [
"rfc6555"
];
meta = with lib; {
description = "Python implementation of the Happy Eyeballs Algorithm";
homepage = "https://github.com/sethmlarson/rfc6555";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}