Merge pull request #319169 from getchoo/pkgs/ptyprocess/adopt

python311Packages.ptyprocess: adopt; modernize
This commit is contained in:
Pol Dellaiera 2024-06-16 22:53:37 +02:00 committed by GitHub
commit c6f03a6931
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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; [ ];
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ getchoo ];
};
}