17 buildPythonPackage rec {
22 disabled = pythonOlder "3.8";
25 inherit pname version;
26 hash = "sha256-jdv9GfcSBM7Ount8cnJLFbP6h7q16B5Fp1vvc2oaPHY=";
29 nativeBuildInputs = [ setuptools-scm ];
31 propagatedBuildInputs = [
38 ] ++ lib.optionals (pythonOlder "3.12") [ importlib-resources ];
40 nativeCheckInputs = [ pytestCheckHook ];
42 __darwinAllowLocalNetworking = true;
44 pythonImportsCheck = [ "irc" ];
47 description = "IRC (Internet Relay Chat) protocol library for Python";
48 homepage = "https://github.com/jaraco/irc";
49 changelog = "https://github.com/jaraco/irc/blob/v${version}/NEWS.rst";
50 license = licenses.mit;