14 buildPythonPackage rec {
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
23 sha256 = "06q86dqllxvi3nssfplmjk9yxaybighwh87lrxfpfhl8yy4z68jz";
27 # too specific pins https://github.com/jesopo/ircrobots/issues/3
28 sed -iE 's/anyio.*/anyio/' requirements.txt
31 propagatedBuildInputs = [
37 ] ++ lib.optionals (pythonOlder "3.7") [
42 ${python.interpreter} -m unittest test
45 pythonImportsCheck = [ "ircrobots" ];
48 description = "Asynchronous bare-bones IRC bot framework for python3";
49 license = licenses.mit;
50 homepage = "https://github.com/jesopo/ircrobots";
51 maintainers = with maintainers; [ hexa ];