1{ lib
2, buildPythonPackage
3, fetchPypi
4, pyvcf
5}:
6
7buildPythonPackage rec {
8 pname = "ACEBinf";
9 version = "1.0.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1168pny671l6zfm2vv1pwspnflmzi7f4v8yldjl7zlz0b9cm5zlz";
14 };
15
16 buildInputs = [ pyvcf ];
17
18 # no tests
19 doCheck = false;
20 pythonImportsCheck = [ "acebinf" ];
21
22 meta = with lib; {
23 homepage = "https://github.com/ACEnglish/acebinf";
24 description = "Collection of simple utilities used when building bioinformatics tools";
25 license = licenses.unlicense;
26 maintainers = with maintainers; [ ris ];
27 };
28}