python310Packages.universal-pathlib: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-08-29 08:13:21 +02:00 committed by GitHub
parent cba36e6fae
commit e6699a5d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
, setuptools
, setuptools-scm
, fsspec
, pythonOlder
}:
buildPythonPackage rec {
@ -11,6 +12,8 @@ buildPythonPackage rec {
version = "0.1.2";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "universal_pathlib";
inherit version;