python3Packages.ratarmountcore: Use pyproject instead of format argument

This commit is contained in:
Maximilian Knespel 2024-03-06 23:19:44 +01:00 committed by mxmlnkn
parent 20d60083ca
commit 71736d33ee
1 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
, indexed-gzip
, indexed-zstd
, python-xz
, setuptools
, rapidgzip
, rarfile
, zstandard # Python bindings
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "ratarmountcore";
version = "0.6.3";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -30,6 +31,7 @@ buildPythonPackage rec {
sourceRoot = "${src.name}/core";
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ indexed-gzip indexed-bzip2 indexed-zstd python-xz rapidgzip rarfile ];
pythonImportsCheck = [ "ratarmountcore" ];