python312Packages.pystac: 1.10.1 -> 1.11.0

This commit is contained in:
R. Ryantm 2024-10-04 03:44:47 +00:00
parent 73bed75dbd
commit 794f7c4082

View File

@ -17,15 +17,15 @@
buildPythonPackage rec {
pname = "pystac";
version = "1.10.1";
version = "1.11.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "stac-utils";
repo = "pystac";
rev = "v${version}";
hash = "sha256-zJGDhKRX50Muo1YDEzfwypMLISnYBYKkPvUULYkUf68=";
rev = "refs/tags/v${version}";
hash = "sha256-yuAam/sXaGMFp1Kwxd28v3nOV05GC3sUY+gKJ4nLwTs=";
};
build-system = [ setuptools ];