nixpkgs/pkgs/development/python-modules/olefile/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

35 lines
767 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "olefile";
version = "0.46";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"olefile"
];
meta = with lib; {
description = "Python package to parse, read and write Microsoft OLE2 files";
homepage = "https://www.decalage.info/python/olefileio";
# BSD2 + reference to Pillow
# http://olefile.readthedocs.io/en/latest/License.html
license = with licenses; [ bsd2 /* and */ hpnd ];
maintainers = with maintainers; [ fab ];
};
}