mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
508 B
Nix
26 lines
508 B
Nix
{ 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 ];
|
|
};
|
|
|
|
}
|