python.pkgs.terminado: 0.6.0 -> 0.8.1

This commit is contained in:
Robin Gloster 2018-01-16 22:07:44 +01:00
parent 1d70a52528
commit 1d3038956c
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 25 additions and 17 deletions

View 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;
};
}

View File

@ -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}";