Merge pull request #318305 from sikmir/osmnx

python3Packages.osmnx: 1.9.1 → 1.9.3
This commit is contained in:
Nikolay Korotkiy
2024-06-27 01:53:41 +04:00
committed by GitHub
@@ -21,21 +21,21 @@
buildPythonPackage rec {
pname = "osmnx";
version = "1.9.1";
version = "1.9.3";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "gboeing";
repo = "osmnx";
rev = "refs/tags/v${version}";
hash = "sha256-od/0IuiK2CvrD0lfcTzkImK/5hcm6m61ULYzEtv/YeA=";
hash = "sha256-Tn800wFoPi5VkZmu9wUVM+EmCj/xxU2EJ6iwnA1VKXo=";
};
nativeBuildInputs = [ hatchling ];
build-system = [ hatchling ];
propagatedBuildInputs = [
dependencies = [
geopandas
matplotlib
networkx
@@ -56,11 +56,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "osmnx" ];
meta = with lib; {
meta = {
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;
maintainers = with maintainers; [ psyanticy ];
changelog = "https://github.com/gboeing/osmnx/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ psyanticy ];
};
}