summary refs log tree commit diff
path: root/pkgs/development/python-modules/acebinf/default.nix
blob: 7889e007d83eec8c51065ef6cbdbdb8f34e65390 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, pyvcf
}:

buildPythonPackage rec {
  pname = "ACEBinf";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1168pny671l6zfm2vv1pwspnflmzi7f4v8yldjl7zlz0b9cm5zlz";
  };

  buildInputs = [ pyvcf ];

  # no tests
  doCheck = false;
  pythonImportsCheck = [ "acebinf" ];

  meta = with lib; {
    homepage = "https://github.com/ACEnglish/acebinf";
    description = "Collection of simple utilities used when building bioinformatics tools";
    license = licenses.unlicense;
    maintainers = with maintainers; [ ris ];
  };
}