matomo: 5.2.1 -> 5.2.2 (#376385)
[NixPkgs.git] / pkgs / by-name / xo / xortool / package.nix
blobbd1caf0e418514bfa0fa54917f49435e7c05d076
2   lib,
3   fetchFromGitHub,
4   python3Packages,
5 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "xortool";
9   version = "1.0.0";
10   pyproject = true;
12   src = fetchFromGitHub {
13     owner = "hellman";
14     repo = "xortool";
15     tag = "v${version}";
16     hash = "sha256-xxaWhGUh/r34eS2TJt8c3Q795OsZOoQLXQllJGJTjqY=";
17   };
19   build-system = with python3Packages; [ poetry-core ];
21   dependencies = with python3Packages; [
22     docopt
23     importlib-metadata
24   ];
26   # Project has no tests
27   doCheck = false;
29   pythonImportsCheck = [ "xortool" ];
31   meta = with lib; {
32     description = "Tool to analyze multi-byte XOR cipher";
33     homepage = "https://github.com/hellman/xortool";
34     changelog = "https://github.com/hellman/xortool/releases/tag/v${version}";
35     license = licenses.mit;
36     maintainers = with maintainers; [ fab ];
37   };