depot/third_party/nixpkgs/pkgs/development/python-modules/wktutils/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

70 lines
1.3 KiB
Nix

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