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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
{
lib,
fetchPypi,
buildPythonPackage,
stdenv,
pythonOlder,
overrideSDK,
rustPlatform,
bitstring,
cachetools,
cffi,
deprecation,
iconv,
matplotlib,
numpy,
scipy,
screed,
hypothesis,
pytest-xdist,
pyyaml,
pytestCheckHook,
}:
let
stdenv' =
if stdenv.hostPlatform.isDarwin then overrideSDK stdenv { darwinMinVersion = "10.14"; } else stdenv;
in
buildPythonPackage rec {
pname = "sourmash";
version = "4.8.11";
pyproject = true;
disabled = pythonOlder "3.9";
stdenv = stdenv';
src = fetchPypi {
inherit pname version;
hash = "sha256-GganbfRkuSaFd5qqpu0CpXe91zpKsyly6BNFgQNNNL8=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-im/TPxnT8c2QbWlzCY60wVwJFRIhSnVW7E4kv6bm0p4=";
};
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
bindgenHook
];
buildInputs = [ iconv ];
propagatedBuildInputs = [
bitstring
cachetools
cffi
deprecation
matplotlib
numpy
scipy
screed
];
pythonImportsCheck = [ "sourmash" ];
nativeCheckInputs = [
hypothesis
pytest-xdist
pytestCheckHook
pyyaml
];
# TODO(luizirber): Working on fixing these upstream
disabledTests = [
"test_compare_no_such_file"
"test_do_sourmash_index_multiscaled_rescale_fail"
"test_metagenome_kreport_out_fail"
];
meta = with lib; {
description = "Quickly search, compare, and analyze genomic and metagenomic data sets";
mainProgram = "sourmash";
homepage = "https://sourmash.bio";
changelog = "https://github.com/sourmash-bio/sourmash/releases/tag/v${version}";
maintainers = with maintainers; [ luizirber ];
license = licenses.bsd3;
};
}
|