32 lines
938 B
Nix
32 lines
938 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "biopython";
|
|
version = "1.70";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b";
|
|
};
|
|
|
|
propagatedBuildInputs = [ 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 lib.maintainers; [ luispedro ];
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
} |