nixpkgs/pkgs/development/python-modules/olefile/default.nix

19 lines
542 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-07-12 11:28:18 +01:00
buildPythonPackage rec {
pname = "olefile";
2018-11-04 10:35:08 +00:00
version = "0.46";
2017-07-12 11:28:18 +01:00
src = fetchPypi {
inherit pname version;
extension = "zip";
2018-11-04 10:35:08 +00:00
sha256 = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964";
2017-07-12 11:28:18 +01:00
};
meta = with lib; {
2017-07-12 11:28:18 +01:00
description = "Python package to parse, read and write Microsoft OLE2 files";
homepage = "https://www.decalage.info/python/olefileio";
2017-07-12 11:28:18 +01:00
# BSD like + reference to Pillow
license = "http://olefile.readthedocs.io/en/latest/License.html";
};
}