python310Packages.pygtfs: fix version specifier

This commit is contained in:
Fabian Affolter 2023-05-10 07:22:18 +02:00
parent 8fa251f6d5
commit 43d67f750f

View File

@ -22,6 +22,12 @@ buildPythonPackage rec {
hash = "sha256-sGJwtf8DVIrE4hcU3IksnyAAt8yf67UBJIiVILDSsv8=";
};
postPatch = ''
# https://github.com/jarondl/pygtfs/pull/72
substituteInPlace setup.py \
--replace "pytz>=2012d" "pytz"
'';
nativeBuildInputs = [
setuptools-scm
];