tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.sectxt: init at 0.9.6
networkException
1 year ago
34e43a34
6fa6f314
+63
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
sectxt
default.nix
top-level
python-packages.nix
+61
pkgs/development/python-modules/sectxt/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
setuptools,
6
6
+
pythonOlder,
7
7
+
requests,
8
8
+
python-dateutil,
9
9
+
langcodes,
10
10
+
pgpy-dtc,
11
11
+
validators,
12
12
+
requests-mock,
13
13
+
pytestCheckHook,
14
14
+
}:
15
15
+
16
16
+
buildPythonPackage rec {
17
17
+
pname = "sectxt";
18
18
+
version = "0.9.6";
19
19
+
pyproject = true;
20
20
+
21
21
+
disabled = pythonOlder "3.7";
22
22
+
23
23
+
src = fetchFromGitHub {
24
24
+
owner = "DigitalTrustCenter";
25
25
+
repo = "sectxt";
26
26
+
tag = version;
27
27
+
hash = "sha256-49YxhcOpi1wofKMRuNxt8esBtfaSoBrGu+yBCRFWZYY=";
28
28
+
};
29
29
+
30
30
+
build-system = [ setuptools ];
31
31
+
32
32
+
dependencies = [
33
33
+
requests
34
34
+
python-dateutil
35
35
+
langcodes
36
36
+
pgpy-dtc
37
37
+
validators
38
38
+
];
39
39
+
40
40
+
pythonRelaxDeps = [
41
41
+
"requests"
42
42
+
"langcodes"
43
43
+
"pgpy-dtc"
44
44
+
"validators"
45
45
+
];
46
46
+
47
47
+
nativeCheckInputs = [
48
48
+
pytestCheckHook
49
49
+
requests-mock
50
50
+
];
51
51
+
52
52
+
pythonImportsCheck = [ "sectxt" ];
53
53
+
54
54
+
meta = {
55
55
+
homepage = "https://github.com/DigitalTrustCenter/sectxt";
56
56
+
changelog = "https://github.com/DigitalTrustCenter/sectxt/releases/tag/${src.tag}";
57
57
+
description = "security.txt parser and validator";
58
58
+
license = lib.licenses.eupl12;
59
59
+
maintainers = with lib.maintainers; [ networkexception ];
60
60
+
};
61
61
+
}
+2
pkgs/top-level/python-packages.nix
···
14650
14650
14651
14651
sectools = callPackage ../development/python-modules/sectools { };
14652
14652
14653
14653
+
sectxt = callPackage ../development/python-modules/sectxt { };
14654
14654
+
14653
14655
seedir = callPackage ../development/python-modules/seedir { };
14654
14656
14655
14657
seekpath = callPackage ../development/python-modules/seekpath { };