pythonPackages.olefile: init at 0.44

This commit is contained in:
Lancelot SIX 2017-07-12 12:28:18 +02:00 committed by Frederik Rietdijk
parent e0f988fc46
commit 1e06824b3b
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "olefile";
version = "0.44";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1bbk1xplmrhymqpk6rkb15sg7v9qfih7zh23p6g2fxxas06cmwk1";
};
meta = with stdenv.lib; {
description = "Python package to parse, read and write Microsoft OLE2 files";
homepage = https://www.decalage.info/python/olefileio;
# BSD like + reference to Pillow
license = "http://olefile.readthedocs.io/en/latest/License.html";
};
}

View file

@ -16621,6 +16621,8 @@ in {
};
};
olefile = callPackage ../development/python-modules/olefile { };
oslo-log = buildPythonPackage rec {
name = "oslo.log-${version}";
version = "1.12.1";