Merge pull request #307919 from r-ryantm/auto-update/python311Packages.wktutils

python311Packages.wktutils: 1.1.6 -> 2.0.0
This commit is contained in:
Fabian Affolter 2024-05-09 12:15:02 +02:00 committed by GitHub
commit b4a45dadf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,25 +1,25 @@
{ lib {
, buildPythonPackage lib,
, dateparser buildPythonPackage,
, defusedxml dateparser,
, fetchFromGitHub defusedxml,
, fiona fetchFromGitHub,
, geomet geomet,
, geopandas geopandas,
, kml2geojson kml2geojson,
, pyshp pyshp,
, pythonOlder pythonOlder,
, pyyaml pyyaml,
, regex requests,
, requests setuptools-scm,
, shapely shapely,
, scikit-learn scikit-learn,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "wktutils"; pname = "wktutils";
version = "1.1.6"; version = "2.0.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -27,39 +27,43 @@ buildPythonPackage rec {
owner = "asfadmin"; owner = "asfadmin";
repo = "Discovery-WKTUtils"; repo = "Discovery-WKTUtils";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-PFeIMIFOff9ztdmIP7jcFzKkmhm01G0QnDm20AafUsg="; hash = "sha256-mB+joEZq/aFPcRqFAzPgwG26Wi7WiRCeQeFottk+4Ho=";
}; };
propagatedBuildInputs = [ postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"twine",' ""
'';
build-system = [ setuptools-scm ];
dependencies = [
dateparser dateparser
defusedxml defusedxml
fiona
geomet geomet
geopandas geopandas
kml2geojson kml2geojson
pyshp pyshp
pyyaml pyyaml
regex
requests
shapely shapely
scikit-learn
]; ];
postPatch = '' passthru.optional-dependencies = {
substituteInPlace setup.py \ extras = [
--replace "sklearn" "scikit-learn" requests
''; scikit-learn
];
};
# Module doesn't have tests # Module doesn't have tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "WKTUtils" ];
"WKTUtils"
];
meta = with lib; { meta = with lib; {
description = "Collection of tools for handling WKTs"; description = "Collection of tools for handling WKTs";
homepage = "https://github.com/asfadmin/Discovery-WKTUtils"; homepage = "https://github.com/asfadmin/Discovery-WKTUtils";
changelog = "https://github.com/asfadmin/Discovery-WKTUtils/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };