mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
pythonPackages.tlslite-ng: init at 0.7.5
This commit is contained in:
parent
e1b7493cfe
commit
09991d40e6
25
pkgs/development/python-modules/tlslite-ng/default.nix
Normal file
25
pkgs/development/python-modules/tlslite-ng/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ecdsa
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tlslite-ng";
|
||||
version = "0.7.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1aw7j50byzab0xwp50m5w5c14fzdzwk2law5a5bn6dn3i5fc6fw2";
|
||||
};
|
||||
|
||||
buildInputs = [ ecdsa ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pure python implementation of SSL and TLS.";
|
||||
homepage = https://pypi.python.org/pypi/tlslite-ng;
|
||||
license = licenses.lgpl2;
|
||||
maintainers = [ maintainers.erictapen ];
|
||||
};
|
||||
|
||||
}
|
@ -4293,6 +4293,8 @@ in {
|
||||
|
||||
tlslite = callPackage ../development/python-modules/tlslite { };
|
||||
|
||||
tlslite-ng = callPackage ../development/python-modules/tlslite-ng { };
|
||||
|
||||
qrcode = callPackage ../development/python-modules/qrcode { };
|
||||
|
||||
traits = callPackage ../development/python-modules/traits { };
|
||||
|
Loading…
Reference in New Issue
Block a user