Merge pull request #19296 from luispedro/add_biopython

pythonPackages.biopython : init at 1.68
This commit is contained in:
Frederik Rietdijk 2016-10-06 14:02:48 +02:00 committed by GitHub
commit e3deccc0d7

View file

@ -2056,6 +2056,34 @@ in modules // {
};
};
biopython = buildPythonPackage rec {
name = "biopython-${version}";
version = "1.68";
src = pkgs.fetchurl {
url = "mirror://pypi/b/biopython/${name}.tar.gz";
sha256 = "07qc7nz0k77y8hf8s18rscvibvm91zw0kkq7ylrhisf8vp8hkp6i";
};
propagatedBuildInputs = with self; [ numpy ];
# Checks try to write to $HOME, which does not work with nix
doCheck = false;
meta = {
description = "Python library for bioinformatics";
longDescription = ''
Biopython is a set of freely available tools for biological computation
written in Python by an international team of developers. It is a
distributed collaborative effort to develop Python libraries and
applications which address the needs of current and future work in
bioinformatics.
'';
homepage = http://biopython.org/wiki/Documentation;
maintainers = with maintainers; [ luispedro ];
};
};
bedup = buildPythonPackage rec {
version = "0.10.1";
name = "bedup-${version}";