{ lib, buildPythonPackage, fetchPypi, isPyPy , dnspython , geoip2 , ipython , praw , pyenchant , pygeoip , pytestCheckHook , pytz , sqlalchemy , xmltodict }: buildPythonPackage rec { pname = "sopel"; version = "7.1.0"; disabled = isPyPy; src = fetchPypi { inherit pname version; sha256 = "74057d4c86cff744b1f1062f3a9c4ae99eb4f1b17048ceb083293d5f4c7e989b"; }; propagatedBuildInputs = [ dnspython geoip2 ipython praw pyenchant pygeoip pytz sqlalchemy xmltodict ]; # remove once https://github.com/sopel-irc/sopel/pull/1653 lands postPatch = '' substituteInPlace requirements.txt \ --replace "praw>=4.0.0,<6.0.0" "praw" ''; checkInputs = [ pytestCheckHook ]; preCheck = '' export TESTDIR=$(mktemp -d) cp -R ./test $TESTDIR pushd $TESTDIR ''; postCheck = '' popd ''; pythonImportsCheck = [ "sopel" ]; meta = with lib; { description = "Simple and extensible IRC bot"; homepage = "http://sopel.chat"; license = licenses.efl20; maintainers = with maintainers; [ mog ]; }; }