Merge pull request #285075 from fabaff/types-pytz-bump

python311Packages.types-pytz: 2023.3.1.1 -> 2023.4.0.20240130
This commit is contained in:
Mario Rodas 2024-02-11 14:08:28 -05:00 committed by GitHub
commit 1eca59022f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-pytz";
version = "2023.3.1.1";
format = "setuptools";
version = "2023.4.0.20240130";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-zCPQGSzUnI9rukTuDIHkWGqPMCBJcPwIlNIJprCNq5o=";
hash = "sha256-M2dqkL8EsZ+Swz7shYETa+ovNd3RJ1nleaYkoAb9OHo=";
};
nativeBuildInputs = [
setuptools
];
# Modules doesn't have tests
doCheck = false;