python311Packages.setuptools-trial: adopt pypa build

This commit is contained in:
natsukium 2023-11-11 18:46:52 +09:00
parent a701be8b52
commit c83bc912c8
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -2,13 +2,14 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, twisted
}:
buildPythonPackage rec {
pname = "setuptools-trial";
version = "0.6.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,6 +19,10 @@ buildPythonPackage rec {
hash = "sha256-FCIPj3YcSLoeJSbwhxlQd89U+tcJizgs4iBCLw/1mxI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
twisted
];