python.pkgs.terminado: 0.6.0 -> 0.8.1
This commit is contained in:
parent
1d70a52528
commit
1d3038956c
24
pkgs/development/python-modules/terminado/default.nix
Normal file
24
pkgs/development/python-modules/terminado/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ptyprocess
|
||||
, tornado
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "terminado";
|
||||
version = "0.8.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0yh69k6579g848rmjyllb5h75pkvgcy27r1l3yzgkf33wnnzkasm";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ptyprocess tornado ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Terminals served by Tornado websockets";
|
||||
homepage = https://github.com/jupyter/terminado;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
}
|
@ -17584,23 +17584,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
terminado = buildPythonPackage rec {
|
||||
name = "terminado-${version}";
|
||||
version = "0.6";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/t/terminado/${name}.tar.gz";
|
||||
sha256 = "2c0ba1f624067dccaaead7d2247cfe029806355cef124dc2ccb53c83229f0126";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ ptyprocess tornado ];
|
||||
|
||||
meta = {
|
||||
description = "Terminals served to term.js using Tornado websockets";
|
||||
homepage = https://github.com/takluyver/terminado;
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
};
|
||||
terminado = callPackage ../development/python-modules/terminado { };
|
||||
|
||||
terminaltables = buildPythonPackage rec {
|
||||
name = "terminaltables-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user