mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
56 lines
1008 B
Nix
56 lines
1008 B
Nix
{ lib
|
|
, olefile
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, cryptography
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "msoffcrypto-tool";
|
|
version = "5.0.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nolze";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-A5A578JZrxRXX6ewkFzittGTOebeNb99fuKsEm5QGoI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
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";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|