python311Packages.agate-excel: add format

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-11-02 08:12:08 +01:00 committed by GitHub
parent a5ad53dad8
commit 53d14cc5f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,15 @@
, xlrd
, olefile
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "agate-excel";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;