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:
commit
8a99f6a8c0
1 changed files with 12 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue