nixpkgs/pkgs/development/python-modules/tlslite/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

22 lines
425 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "tlslite";
version = "0.4.9";
src = fetchPypi {
inherit pname version;
sha256 = "9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d";
};
meta = with lib; {
description = "Pure Python implementation of SSL and TLS";
homepage = "https://pypi.python.org/pypi/tlslite";
license = licenses.bsd3;
};
}