1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "olefile"; 4 version = "0.44"; 5 name = "${pname}-${version}"; 6 7 src = fetchPypi { 8 inherit pname version; 9 extension = "zip"; 10 sha256 = "1bbk1xplmrhymqpk6rkb15sg7v9qfih7zh23p6g2fxxas06cmwk1"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Python package to parse, read and write Microsoft OLE2 files"; 15 homepage = https://www.decalage.info/python/olefileio; 16 # BSD like + reference to Pillow 17 license = "http://olefile.readthedocs.io/en/latest/License.html"; 18 }; 19}