blob: 453ff4aededf67d7368cb893ab5ad0341e805456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "tls-client";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "FlorianREGAZ";
repo = "Python-Tls-Client";
tag = version;
hash = "sha256-0eH9fA/oQzrgXcQilUdg4AaTqezj1Q9hP9olhZEDeBc=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ typing-extensions ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "tls_client" ];
meta = {
description = "Advanced HTTP Library";
homepage = "https://github.com/FlorianREGAZ/Python-Tls-Client";
changelog = "https://github.com/FlorianREGAZ/Python-Tls-Client/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|