pythonPackages.olefile: init at 0.44
This commit is contained in:
parent
e0f988fc46
commit
1e06824b3b
19
pkgs/development/python-modules/olefile/default.nix
Normal file
19
pkgs/development/python-modules/olefile/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -16621,6 +16621,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
olefile = callPackage ../development/python-modules/olefile { };
|
||||
|
||||
oslo-log = buildPythonPackage rec {
|
||||
name = "oslo.log-${version}";
|
||||
version = "1.12.1";
|
||||
|
Loading…
Reference in New Issue
Block a user