mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
pythonPackages.tlslite: delete, migrate refs to pythonPackages.tlslite-ng
tlslite has a test failure on Python 3.7 [0]. @tomato42, a commiter of tlslite and author of tlslite-ng said, that tlslite is abandoned (last commit 2015) and tlslite-ng should be used as a drop in replacement. [0] https://github.com/trevp/tlslite/issues/121
This commit is contained in:
parent
09991d40e6
commit
93bf0a02f5
|
@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec {
|
|||
pysocks
|
||||
qrcode
|
||||
requests
|
||||
tlslite
|
||||
tlslite-ng
|
||||
|
||||
# plugins
|
||||
keepkey
|
||||
|
|
|
@ -22,7 +22,7 @@ python2Packages.buildPythonApplication rec {
|
|||
qrcode
|
||||
requests
|
||||
pyaes
|
||||
tlslite
|
||||
tlslite-ng
|
||||
x11_hash
|
||||
mnemonic
|
||||
jsonrpclib
|
||||
|
|
|
@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
|
|||
qdarkstyle
|
||||
qrcode
|
||||
requests
|
||||
tlslite
|
||||
tlslite-ng
|
||||
typing
|
||||
|
||||
# plugins
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tlslite";
|
||||
version = "0.4.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1fxx6d3nw5r1hqna1h2jvqhcygn9fyshlm0gh3gp0b1ji824gd6r";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A pure Python implementation of SSL and TLS";
|
||||
homepage = https://pypi.python.org/pypi/tlslite;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
}
|
|
@ -4291,7 +4291,7 @@ in {
|
|||
py = python.override{x11Support=true;};
|
||||
in callPackage ../development/python-modules/tkinter { py = py; };
|
||||
|
||||
tlslite = callPackage ../development/python-modules/tlslite { };
|
||||
tlslite = throw "deprecated 2018-12-10; use pythonPackages.tlslite-ng instead";
|
||||
|
||||
tlslite-ng = callPackage ../development/python-modules/tlslite-ng { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue