mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 00:26:33 +00:00
pythonPackage.tls-parser: init at 1.2.2
This commit is contained in:
parent
e1e044e70e
commit
343f689854
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/tls-parser/default.nix
Normal file
29
pkgs/development/python-modules/tls-parser/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib
|
||||||
|
, isPy27
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildPythonPackage
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "tls-parser";
|
||||||
|
version = "1.2.2";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nabla-c0d3";
|
||||||
|
repo = "tls_parser";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "12qj3vg02r5a51w6gbgb1gcxicqc10lbbsdi57jkkfvbqiindbd0";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/nabla-c0d3/tls_parser";
|
||||||
|
description = "Small library to parse TLS records";
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ veehaitch ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1583,6 +1583,8 @@ in {
|
||||||
|
|
||||||
tesserocr = callPackage ../development/python-modules/tesserocr { };
|
tesserocr = callPackage ../development/python-modules/tesserocr { };
|
||||||
|
|
||||||
|
tls-parser = callPackage ../development/python-modules/tls-parser { };
|
||||||
|
|
||||||
trueskill = callPackage ../development/python-modules/trueskill { };
|
trueskill = callPackage ../development/python-modules/trueskill { };
|
||||||
|
|
||||||
trustme = callPackage ../development/python-modules/trustme {};
|
trustme = callPackage ../development/python-modules/trustme {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue