Merge pull request #161939 from r-ryantm/auto-update/python3.10-geojson-client

python310Packages.geojson-client: 0.6 -> 0.7
This commit is contained in:
Fabian Affolter 2022-02-26 10:12:50 +01:00 committed by GitHub
commit 8a99f6a8c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,17 +6,21 @@
, pytz
, requests
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "geojson-client";
version = "0.6";
version = "0.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "exxamalte";
repo = "python-geojson-client";
rev = "v${version}";
sha256 = "sha256-8eSLimCgFRn3cHTz5TE9fAUAbwFO72b23C0lg6fVOLQ=";
sha256 = "sha256-7EhdIfVM6d5fp6k+RdX6z33O5sZGeF/ThNkSXL8EjE8=";
};
propagatedBuildInputs = [
@ -26,9 +30,13 @@ buildPythonPackage rec {
requests
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "geojson_client" ];
pythonImportsCheck = [
"geojson_client"
];
meta = with lib; {
description = "Python module for convenient access to GeoJSON feeds";