nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pystac-client: 0.8.6 → 0.9.0 (#428441)

authored by

Nikolay Korotkiy and committed by
GitHub
ef96b73e dab555f1

+8 -2
+8 -2
pkgs/development/python-modules/pystac-client/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pystac-client"; 21 - version = "0.8.6"; 21 + version = "0.9.0"; 22 22 pyproject = true; 23 23 disabled = pythonOlder "3.9"; 24 24 ··· 26 26 owner = "stac-utils"; 27 27 repo = "pystac-client"; 28 28 tag = "v${version}"; 29 - hash = "sha256-rbRxqR6hZy284JfQu5+dukFTBHllqzjo0k9aWhrkRAU="; 29 + hash = "sha256-+DOWf1ZAwylicdSuOBNivi0Z7DxaymZF756X7fogAjc="; 30 30 }; 31 31 32 32 build-system = [ setuptools ]; ··· 53 53 disabledTestMarks = [ 54 54 # Tests accessing Internet 55 55 "vcr" 56 + ]; 57 + 58 + # requires cql2 59 + disabledTests = [ 60 + "test_filter_conversion_to_cql2_json" 61 + "test_filter_conversion_to_cql2_text" 56 62 ]; 57 63 58 64 pythonImportsCheck = [ "pystac_client" ];