mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
21 lines
517 B
Nix
21 lines
517 B
Nix
{ lib, buildPythonPackage, fetchPypi, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dockerpty";
|
|
version = "0.4.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1kjn64wx23jmr8dcc6g7bwlmrhfmxr77gh6iphqsl39sayfxdab9";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
meta = with lib; {
|
|
description = "Functionality needed to operate the pseudo-tty (PTY) allocated to a docker container";
|
|
homepage = "https://github.com/d11wtq/dockerpty";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|