Merge pull request #291273 from sikmir/osmnx

python3Packages.osmnx: 1.3.0 → 1.9.1
This commit is contained in:
Sandro 2024-03-07 22:41:17 +01:00 committed by GitHub
commit aaaa275175
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@
, folium
, gdal
, geopandas
, hatchling
, matplotlib
, networkx
, numpy
@ -19,18 +20,22 @@
buildPythonPackage rec {
pname = "osmnx";
version = "1.3.0";
format = "setuptools";
version = "1.9.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "gboeing";
repo = pname;
repo = "osmnx";
rev = "refs/tags/v${version}";
hash = "sha256-17duWrg48Qb4ojYYFX4HBpPLeVgHn1WV84KVATvBnzY=";
hash = "sha256-od/0IuiK2CvrD0lfcTzkImK/5hcm6m61ULYzEtv/YeA=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
geopandas
matplotlib
@ -55,7 +60,7 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "A package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX.";
description = "Package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX";
homepage = "https://github.com/gboeing/osmnx";
changelog = "https://github.com/gboeing/osmnx/blob/v${version}/CHANGELOG.md";
license = licenses.mit;