apc-temp-fetch: use pyproject = true

This commit is contained in:
TomaSajt 2024-05-07 10:46:48 +02:00
parent 3ba3a67444
commit 659e3ce393
No known key found for this signature in database
GPG Key ID: F011163C050122A1

@ -3,12 +3,13 @@
, fetchPypi
, pythonOlder
, requests
, setuptools
}:
buildPythonApplication rec {
pname = "apc-temp-fetch";
version = "0.0.2";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@ -18,7 +19,11 @@ buildPythonApplication rec {
hash = "sha256-lXGj/xrOkdMMYvuyVVSCojjQlzISFUT14VTn//iOARo=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
requests
];