depot/third_party/nixpkgs/pkgs/development/python-modules/pydelijn/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
1 KiB
Nix

{
lib,
aiohttp,
async-timeout,
buildPythonPackage,
fetchPypi,
pythonOlder,
pytz,
}:
buildPythonPackage rec {
pname = "pydelijn";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-xyBq2h3ipUarkjCXq9GIbY7bhsf9729aQwHde3o5K6g=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
pytz
];
postPatch = ''
# Remove with next release
substituteInPlace setup.py \
--replace "async_timeout>=3.0.1,<4.0" "async_timeout>=3.0.1"
# https://github.com/bollewolle/pydelijn/pull/11
substituteInPlace pydelijn/common.py \
--replace ", loop=self.loop" ""
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pydelijn" ];
meta = with lib; {
description = "Python package to retrieve realtime data of passages at stops of De Lijn";
homepage = "https://github.com/bollewolle/pydelijn";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}