Merge pull request #293237 from imincik/shapely-2.0.3

python3Packages.shapely: 2.0.2 -> 2.0.3
This commit is contained in:
Nikolay Korotkiy 2024-03-11 22:12:53 +04:00 committed by GitHub
commit 587a40f999
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,27 +1,28 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
, pythonOlder
, cython
, geos
, numpy
, oldest-supported-numpy
, setuptools
, wheel
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "shapely";
version = "2.0.2";
format = "pyproject";
version = "2.0.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-FxPMBMFxuv/Fslm6hTHFiswqMBcHt/Ah2IoV7QkGSec=";
hash = "sha256-TWXQqnkQr3Hvpy/WRH4CqOXdRNqBqYPenXNtbmzL5nQ=";
};
nativeBuildInputs = [