Files
nixpkgs/pkgs/development/python-modules/biopython/default.nix
T
2023-12-27 16:45:07 +00:00

37 lines
984 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, isPy3k
}:
buildPythonPackage rec {
pname = "biopython";
version = "1.82";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-qbENlZroipdEqRxs42AfTIbn7EFnm8k8KfZ5IY9hZ7s=";
};
disabled = !isPy3k;
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 = "https://biopython.org/wiki/Documentation";
maintainers = with lib.maintainers; [ luispedro ];
license = lib.licenses.bsd3;
};
}