summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/binary2strings/default.nix
blob: 186dd71a1a663632e428f0359c417a90a7b28564 (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pybind11,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "binary2strings";
  version = "0.1.13";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "glmcdona";
    repo = "binary2strings";
    tag = "v${version}";
    hash = "sha256-3UPT0PdnPAhOu3J2vU5NxE3f4Nb1zwuX3hJiy87nLD0=";
  };

  nativeBuildInputs = [
    pybind11
    setuptools
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "binary2strings" ];

  enabledTestPaths = [ "tests/test.py" ];

  meta = {
    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 = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}