nixpkgs/pkgs/development/python-modules/biopython/default.nix

33 lines
928 B
Nix
Raw Normal View History

2017-12-31 11:13:18 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, numpy
}:
buildPythonPackage rec {
pname = "biopython";
version = "1.74";
2017-12-31 11:13:18 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1h4hcpx1vqrcddpcznyxy14zzvy2yanlkz0117w5n869w8djq595";
2017-12-31 11:13:18 +00:00
};
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.
'';
2018-06-27 20:12:57 +00:00
homepage = https://biopython.org/wiki/Documentation;
2017-12-31 11:13:18 +00:00
maintainers = with lib.maintainers; [ luispedro ];
license = lib.licenses.bsd3;
};
2018-06-27 20:12:57 +00:00
}