Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / biopython / default.nix
blob43b48aa03a491893093bc71d53a29a5ec5c422f1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "biopython";
10   version = "1.78";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1ee0a0b6c2376680fea6642d5080baa419fd73df104a62d58a8baf7a8bbe4564";
15   };
17   disabled = !isPy3k;
19   propagatedBuildInputs = [ numpy ];
20   # Checks try to write to $HOME, which does not work with nix
21   doCheck = false;
22   meta = {
23     description = "Python library for bioinformatics";
24     longDescription = ''
25       Biopython is a set of freely available tools for biological computation
26       written in Python by an international team of developers. It is a
27       distributed collaborative effort to develop Python libraries and
28       applications which address the needs of current and future work in
29       bioinformatics.
30     '';
31     homepage = "https://biopython.org/wiki/Documentation";
32     maintainers = with lib.maintainers; [ luispedro ];
33     license = lib.licenses.bsd3;
34   };