ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / olefile / default.nix
blobff0dc7c1c93a5f46b28603eafba41d984dad4acf
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "olefile";
9   version = "0.46";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964";
16   };
18   checkInputs = [
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   };