Merge pull request #291273 from sikmir/osmnx
python3Packages.osmnx: 1.3.0 → 1.9.1
This commit is contained in:
commit
aaaa275175
1 changed files with 10 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue