mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 21:17:37 +00:00
Merge pull request #319169 from getchoo/pkgs/ptyprocess/adopt
python311Packages.ptyprocess: adopt; modernize
This commit is contained in:
commit
c6f03a6931
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user