1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5}: 6 7buildPythonPackage rec { 8 pname = "biopython"; 9 version = "1.70"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b"; 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 = http://biopython.org/wiki/Documentation; 29 maintainers = with lib.maintainers; [ luispedro ]; 30 license = lib.licenses.bsd3; 31 }; 32}