2017-08-25 08:40:49 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-01-01 09:56:31 +00:00
|
|
|
, python
|
2017-08-25 08:40:49 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "odfpy";
|
2017-12-30 11:25:08 +00:00
|
|
|
version = "1.3.6";
|
2017-08-25 08:40:49 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-12-30 11:25:08 +00:00
|
|
|
sha256 = "6bcaf3b23aa9e49ed8c8c177266539b211add4e02402748a994451482a10cb1b";
|
2017-08-25 08:40:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-01-01 09:56:31 +00:00
|
|
|
${python.interpreter} -m unittest discover -s tests
|
2017-08-25 08:40:49 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python API and tools to manipulate OpenDocument files";
|
|
|
|
homepage = "https://joinup.ec.europa.eu/software/odfpy/home";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|