1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5}:
6
7buildPythonPackage rec {
8 pname = "biopython";
9 version = "1.72";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "ab6b492443adb90c66267b3d24d602ae69a93c68f4b9f135ba01cb06d36ce5a2";
14 };
15
16 propagatedBuildInputs = [ numpy ];
17 # Checks try to write to $HOME, which does not work with nix
18 doCheck = false;
19 meta = {
20 description = "Python library for bioinformatics";
21 longDescription = ''
22 Biopython is a set of freely available tools for biological computation
23 written in Python by an international team of developers. It is a
24 distributed collaborative effort to develop Python libraries and
25 applications which address the needs of current and future work in
26 bioinformatics.
27 '';
28 homepage = https://biopython.org/wiki/Documentation;
29 maintainers = with lib.maintainers; [ luispedro ];
30 license = lib.licenses.bsd3;
31 };
32}