Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / olefile / default.nix
blobf0df020d39c33154292fae53704d19969776f60e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "olefile";
9   version = "0.47";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "sha256-WZODOBoL89+9kyygymUVrNF07UiHDL9/7hI9aYwZLBw=";
16   };
18   nativeCheckInputs = [
19     pytestCheckHook
20   ];
22   pythonImportsCheck = [
23     "olefile"
24   ];
26   meta = with lib; {
27     description = "Python package to parse, read and write Microsoft OLE2 files";
28     homepage = "https://www.decalage.info/python/olefileio";
29     # BSD2 + reference to Pillow
30     # http://olefile.readthedocs.io/en/latest/License.html
31     license = with licenses; [ bsd2 /* and */ hpnd ];
32     maintainers = with maintainers; [ fab ];
33   };