18 buildPythonPackage rec {
20 version = "2024.5.30";
23 disabled = pythonOlder "3.6";
26 inherit pname version;
27 hash = "sha256-uKJMeC1dXhQp1CGbtdnqmELFO64VWblhABGfpKHGCZQ=";
30 build-system = [ setuptools ];
40 ] ++ lib.optionals (pythonOlder "3.9") [ pytz ];
42 nativeCheckInputs = [ pytestCheckHook ];
45 substituteInPlace setup.py \
46 --replace-fail "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 = "Modified version of Supybot, an IRC bot";
63 homepage = "https://github.com/ProgVal/Limnoria";
64 license = licenses.bsd3;