blob: 950103d9058eba26bb719e36f7aaad582af8435b (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
hatchling,
idna,
pyopenssl,
pytestCheckHook,
service-identity,
}:
buildPythonPackage rec {
pname = "trustme";
version = "1.2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ZSi6K7x/LbQfM4JcjdE+Pj650zS6D5CXE8jDE59K5H8=";
};
build-system = [ hatchling ];
dependencies = [
cryptography
idna
];
nativeCheckInputs = [
pyopenssl
pytestCheckHook
service-identity
];
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "trustme" ];
meta = {
description = "High quality TLS certs while you wait, for the discerning tester";
homepage = "https://github.com/python-trio/trustme";
changelog = "https://trustme.readthedocs.io/en/latest/#change-history";
license = with lib.licenses; [
mit
asl20
];
};
}
|