10 buildPythonPackage rec {
15 disabled = pythonOlder "3.9";
18 inherit pname version;
19 hash = "sha256-eOa/t43mMDQDev01/nfLbgqeW2Jwa+z3in2SKxbtg/c=";
23 # cherry-picked from https://github.com/biopython/biopython/commit/3f9bda7ef44f533dadbaa0de29ac21929bc0b2f1
24 # fixes SeqXMLIO parser to process all data. remove on next update
25 ./close_parser_on_time.patch
28 build-system = [ setuptools ];
30 dependencies = [ numpy ];
32 pythonImportsCheck = [ "Bio" ];
37 export HOME=$(mktemp -d)
39 python run_tests.py --offline
45 description = "Python library for bioinformatics";
47 Biopython is a set of freely available tools for biological computation
48 written in Python by an international team of developers. It is a
49 distributed collaborative effort to develop Python libraries and
50 applications which address the needs of current and future work in
53 homepage = "https://biopython.org/wiki/Documentation";
54 maintainers = with lib.maintainers; [ luispedro ];
55 license = lib.licenses.bsd3;