mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
0545bbb4cd
Diff: https://github.com/nolze/msoffcrypto-tool/compare/refs/tags/v5.4.1...v5.4.2 Changelog: https://github.com/nolze/msoffcrypto-tool/blob/v5.4.2/CHANGELOG.md
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
olefile,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
cryptography,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "msoffcrypto-tool";
|
|
version = "5.4.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nolze";
|
|
repo = "msoffcrypto-tool";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-nwCjgcZqD0hptHC0WqIodHC5m/JHYyUdfEngIoXzNqA=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
cryptography
|
|
olefile
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# Test fails with AssertionError
|
|
"test_cli"
|
|
];
|
|
|
|
pythonImportsCheck = [ "msoffcrypto" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python tool and library for decrypting MS Office files with passwords or other keys";
|
|
homepage = "https://github.com/nolze/msoffcrypto-tool";
|
|
changelog = "https://github.com/nolze/msoffcrypto-tool/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "msoffcrypto-tool";
|
|
};
|
|
}
|