
If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
23 lines
450 B
Nix
23 lines
450 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tlslite";
|
|
version = "0.4.9";
|
|
format = "setuptools";
|
|
|
|
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;
|
|
};
|
|
}
|