python310Packages.laszip: 0.2.1 -> 0.2.3

Diff: tmontaigu/laszip-python@0.2.1...0.2.3

Changelog: https://github.com/tmontaigu/laszip-python/blob/0.2.3/Changelog.md
This commit is contained in:
natsukium 2023-08-06 00:13:10 +09:00
parent cf4c0f090f
commit 20a9422c03
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, scikit-build-core
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "laszip-python";
version = "0.2.1";
version = "0.2.3";
format = "pyproject";
@ -20,9 +21,11 @@ buildPythonPackage rec {
owner = "tmontaigu";
repo = pname;
rev = version;
hash = "sha256-ujKoUm2Btu25T7ZrSGqjRc3NR1qqsQU8OwHQDSx8grY=";
hash = "sha256-MiPzL9TDCf1xnCv7apwdfcpkFnBRi4PO/atTQxqL8cw=";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-std=c++17";
nativeBuildInputs = [
cmake
pybind11