14 buildPythonPackage rec {
17 format = "setuptools";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
24 hash = "sha256-mIh3tERwHtGH9eA0AT8Lcnwp1Wn9lQhKkUjuZcOXO/c=";
28 # too specific pins https://github.com/jesopo/ircrobots/issues/3
29 sed -iE 's/anyio.*/anyio/' requirements.txt
32 propagatedBuildInputs = [
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 ];