python312Packages.pystac-client: 0.8.3 -> 0.8.4 (#349191)

This commit is contained in:
Ivan Mincik 2024-10-17 08:17:45 +00:00 committed by GitHub
commit 69eed84b68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,15 +18,15 @@
buildPythonPackage rec {
pname = "pystac-client";
version = "0.8.3";
version = "0.8.4";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "stac-utils";
repo = "pystac-client";
rev = "v${version}";
hash = "sha256-tzfpvNtj+KkKjA75En+OwxYQWGzxHLACLkzWT2j/ThU=";
rev = "refs/tags/v${version}";
hash = "sha256-EetS0MD5DLBR+ht9YfD+oRdfHbVONuVHdSZj3FQ5Sm8=";
};
build-system = [ setuptools ];