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

19 lines
550 B
Nix
Raw Normal View History

2017-07-12 12:28:18 +02:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "olefile";
2018-11-04 11:35:08 +01:00
version = "0.46";
2017-07-12 12:28:18 +02:00
src = fetchPypi {
inherit pname version;
extension = "zip";
2018-11-04 11:35:08 +01:00
sha256 = "133b031eaf8fd2c9399b78b8bc5b8fcbe4c31e85295749bb17a87cba8f3c3964";
2017-07-12 12:28:18 +02:00
};
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";
};
}