nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
Danielle Lancashire c8330c9972
maintainers: remove endocrimes
My original commit was somewhat more tongue in cheek, but I think this
time I'm going to be honest, rather than hiding behind humor.

I'm angry that we as a community have reached a point where we're
falling apart because people would rather accept sealioning and bad
faith arguments that belong in a 2002 mailing list, not a 2024 software
community.

Every time I dare come back to the Nix community as a more active
contributor it feels like we have a fresh wave of controversy that we
don't ever heal from, everyone just moves on, more tired, and more
broken than before. And now it's crossed a line.

I'm out.

I hope the community decides to actually try and heal. Tolerating the intolerant
for too long has consequences - and the [paradox
of tolerance](https://en.wikipedia.org/wiki/Paradox_of_tolerance) has
come to its natural conclusion here.

If it does heal, I'll be back with a vengeance, because it turns out replacing
Nix is hard - emotionally and technically, and I'll miss it.

~Danielle

(this commit+PR are not a place for useless debates.)
2024-04-27 23:48:44 +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; [ ];
};
}