python311Packages.binary2strings: init at 0.1.13

Module to extract Ascii, Utf8, and Unicode strings from binary data

https://github.com/glmcdona/binary2strings
This commit is contained in:
Fabian Affolter 2023-12-28 09:46:01 +01:00
parent 9c42d25632
commit 1d146c1788
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pybind11
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "binary2strings";
version = "0.1.13";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "glmcdona";
repo = "binary2strings";
rev = "refs/tags/v${version}";
hash = "sha256-3UPT0PdnPAhOu3J2vU5NxE3f4Nb1zwuX3hJiy87nLD0=";
};
nativeBuildInputs = [
pybind11
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"binary2strings"
];
pytestFlagsArray = [
"tests/test.py"
];
meta = with lib; {
description = "Module to extract Ascii, Utf8, and Unicode strings from binary data";
homepage = "https://github.com/glmcdona/binary2strings";
changelog = "https://github.com/glmcdona/binary2strings/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1456,6 +1456,8 @@ self: super: with self; {
binary = callPackage ../development/python-modules/binary { };
binary2strings = callPackage ../development/python-modules/binary2strings { };
binaryornot = callPackage ../development/python-modules/binaryornot { };
bincopy = callPackage ../development/python-modules/bincopy { };