2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-04-13 21:17:37 +00:00

Merge pull request 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 ]; nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ptyprocess" ]; pythonImportsCheck = [ "ptyprocess" ];
meta = with lib; { meta = {
description = "Run a subprocess in a pseudo terminal"; description = "Run a subprocess in a pseudo terminal";
homepage = "https://github.com/pexpect/ptyprocess"; homepage = "https://github.com/pexpect/ptyprocess";
changelog = "https://github.com/pexpect/ptyprocess/releases/tag/${version}"; changelog = "https://github.com/pexpect/ptyprocess/releases/tag/${version}";
license = licenses.isc; license = lib.licenses.isc;
maintainers = with maintainers; [ ]; maintainers = with lib.maintainers; [ getchoo ];
}; };
} }