10 buildPythonPackage rec {
11 pname = "enturclient";
13 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "hfurubotten";
21 hash = "sha256-Y2sBPikCAxumylP1LUy8XgjBRCWaNryn5XHSrRjJIIo=";
28 propagatedBuildInputs = [
34 substituteInPlace pyproject.toml \
35 --replace 'async_timeout = "^3.0.1"' 'async_timeout = ">=3.0.1"'
38 # Project has no tests
41 pythonImportsCheck = [
46 description = "Python library for interacting with the Entur.org API";
47 homepage = "https://github.com/hfurubotten/enturclient";
48 license = with licenses; [ mit ];
49 maintainers = with maintainers; [ fab ];