about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/docx2python/default.nix
blob: 13b41949ebef49e76b2c290be507b6ad2875a9e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }:

buildPythonPackage rec {
  pname = "docx2python";
  version = "unstable-2020-11-15";

  # Pypi does not contain tests
  src = fetchFromGitHub {
    owner = "ShayHill";
    repo = pname;
    rev = "21b2edafc0a01a6cfb73aefc61747a65917e2cad";
    sha256 = "1nwg17ziwm9a2x7yxsscj8zgc1d383ifsk5w7qa2fws6gf627kyi";
  };

  preCheck = "cd test"; # Tests require the `test/resources` folder to be accessible
  nativeCheckInputs = [ pytestCheckHook ];
  disabledTests = [ # asserts related to file deletions fail
    "test_docx2python.py"
    "test_docx_context.py"
    "test_google_docs.py"
  ];
  pythonImportsCheck = [ "docx2python" ];

  meta = with lib; {
    homepage = "https://github.com/ShayHill/docx2python";
    description = "Extract docx headers, footers, (formatted) text, footnotes, endnotes, properties, and images";
    maintainers = [ maintainers.ivar ];
    license = licenses.mit;
  };
}