Merge pull request #297036 from Stunkymonkey/python-shapely_1_8-normalize

python3Packages.shapely_1_8: normalize pname
This commit is contained in:
Ivan Mincik 2024-03-25 07:25:28 +00:00 committed by GitHub
commit ea37b82acd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -15,14 +15,15 @@
}:
buildPythonPackage rec {
pname = "Shapely";
pname = "shapely";
version = "1.8.5";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
pname = "Shapely";
inherit version;
hash = "sha256-6CttYOz7EkEgyI/hBqR4WWu+qxQhFtfn9ko2TayQKpI=";
};