python312Packages.xdis: switch to pyproject and dependencies

This commit is contained in:
Theodore Ni
2024-10-21 07:56:18 -07:00
parent 40d9294325
commit 394a732606
@@ -6,13 +6,14 @@
fetchpatch,
pytestCheckHook,
pythonOlder,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "xdis";
version = "6.1.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -47,7 +48,11 @@ buildPythonPackage rec {
})
];
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
click
six
];