Merge pull request #231002 from fabaff/pygtfs-fix

python310Packages.pygtfs: fix version specifier
This commit is contained in:
Jörg Thalheim
2023-05-10 07:14:31 +01:00
committed by GitHub
@@ -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
];