mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
27 lines
513 B
Nix
27 lines
513 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, ecdsa
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tlslite-ng";
|
|
version = "0.7.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6ab56f0e9629ce3d807eb528c9112defa9f2e00af2b2961254e8429ca5c1ff00";
|
|
};
|
|
|
|
buildInputs = [ ecdsa ];
|
|
|
|
meta = with lib; {
|
|
description = "Pure python implementation of SSL and TLS.";
|
|
homepage = "https://pypi.python.org/pypi/tlslite-ng";
|
|
license = licenses.lgpl2;
|
|
maintainers = [ ];
|
|
};
|
|
|
|
}
|