python311Packages.ptyprocess: modernize

This commit is contained in:
seth 2024-06-11 19:55:01 -04:00
parent b7770b3789
commit 8877e3795c
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -28,17 +28,17 @@ buildPythonPackage rec {
})
];
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ptyprocess" ];
meta = with lib; {
meta = {
description = "Run a subprocess in a pseudo terminal";
homepage = "https://github.com/pexpect/ptyprocess";
changelog = "https://github.com/pexpect/ptyprocess/releases/tag/${version}";
license = licenses.isc;
maintainers = with maintainers; [ getchoo ];
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ getchoo ];
};
}