xortool: init at 1.0.0

This commit is contained in:
Fabian Affolter 2021-01-20 08:52:24 +01:00
parent dd3238c002
commit 6faef4ab0d
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonApplication
, docopt
, fetchFromGitHub
, importlib-metadata
, poetry-core
}:
buildPythonApplication rec {
pname = "xortool";
version = "1.0.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "hellman";
repo = pname;
rev = "v${version}";
sha256 = "19lfadi28r89bl5q8fhrxgjgs3nx3kgjd4rdg7wbvzi1cn29c5n7";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ docopt importlib-metadata ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "xortool" ];
meta = with lib; {
description = "Tool to analyze multi-byte XOR cipher";
homepage = "https://github.com/hellman/xortool";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -29245,6 +29245,8 @@ in
xboxdrv = callPackage ../misc/drivers/xboxdrv { };
xortool = python3Packages.callPackage ../tools/security/xortool { };
xow = callPackage ../misc/drivers/xow { };
xbps = callPackage ../tools/package-management/xbps { };