ts1-signatures: init at unstable-2024-08-10
This commit is contained in:
parent
6c7d7e4be4
commit
d64658d11a
44
pkgs/development/python-modules/ts1-signatures/default.nix
Normal file
44
pkgs/development/python-modules/ts1-signatures/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
dpkt,
|
||||
pyyaml,
|
||||
pythonOlder,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
buildPythonPackage {
|
||||
pname = "ts1-signatures";
|
||||
version = "0-unstable-2024-08-10";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yifeikong";
|
||||
repo = "th1";
|
||||
rev = "efa682bd37c668ae00d2225deb753e01f6cd1406";
|
||||
hash = "sha256-fz5EFPO5UPPbFnqe4wE1y2lIROPByse9awyBa49o8ZE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
dpkt
|
||||
pyyaml
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = [
|
||||
"test_nghttpd_log_parsing" # Attempts to load things from logs/ which it cannot find for some reason.
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "TLS and HTTP signature and fingerprint library";
|
||||
homepage = "https://github.com/yifeikong/th1";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ggg ];
|
||||
};
|
||||
}
|
@ -15893,6 +15893,8 @@ self: super: with self; {
|
||||
|
||||
trytond = callPackage ../development/python-modules/trytond { };
|
||||
|
||||
ts1-signatures = callPackage ../development/python-modules/ts1-signatures { };
|
||||
|
||||
tsfresh = callPackage ../development/python-modules/tsfresh { };
|
||||
|
||||
tskit = callPackage ../development/python-modules/tskit { };
|
||||
|
Loading…
Reference in New Issue
Block a user