summary refs log tree commit diff
path: root/pkgs/development/python-modules/dendropy/default.nix
blob: c0055580c403aec4a63d14e096ae38137becf544 (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
31
32
33
34
35
36
37
38
{ lib
, pkgs
, buildPythonPackage
, fetchFromGitHub
, pytest
}:

buildPythonPackage rec {
  pname   = "DendroPy";
  version = "4.4.0";

  # tests are incorrectly packaged in pypi version
  src = fetchFromGitHub {
    owner = "jeetsukumaran";
    repo = pname;
    rev = "v${version}";
    sha256 = "097hfyv2kaf4x92i4rjx0paw2cncxap48qivv8zxng4z7nhid0x9";
  };

  preCheck = ''
    # Needed for unicode python tests
    export LC_ALL="en_US.UTF-8"
    cd tests  # to find the 'support' module
  '';

  checkInputs = [ pytest pkgs.glibcLocales ];

  checkPhase = ''
    pytest -k 'not test_dataio_nexml_reader_tree_list and not test_pscores_with'
  '';

  meta = {
    homepage = https://dendropy.org/;
    description = "A Python library for phylogenetic computing";
    maintainers = with lib.maintainers; [ unode ];
    license = lib.licenses.bsd3;
  };
}