16 buildPythonPackage rec {
18 version = "2023.11.18";
19 format = "setuptools";
21 disabled = pythonOlder "3.6";
24 inherit pname version;
25 hash = "sha256-Ftm5OGTt1emQsYso3hAUA9yMNBkIK5jybdFaRKJJk0o=";
28 propagatedBuildInputs = [
36 ] ++ lib.optionals (pythonOlder "3.9") [
45 substituteInPlace setup.py \
46 --replace "version=version" 'version="${version}"'
51 export PATH="$PATH:$out/bin";
52 supybot-test test -v --no-network
56 pythonImportsCheck = [
57 # Uses the same names as Supybot
62 description = "A modified version of Supybot, an IRC bot";
63 homepage = "https://github.com/ProgVal/Limnoria";
64 license = licenses.bsd3;
65 maintainers = with maintainers; [ goibhniu ];