Skip to content

Commit

Permalink
pythonPackages.acebinf: init at 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
risicle committed Sep 20, 2020
1 parent 4543e54 commit e61102d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/acebinf/default.nix
@@ -0,0 +1,28 @@
{ stdenv
, 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 stdenv.lib; {
homepage = "https://github.com/ACEnglish/acebinf";
description = "Collection of simple utilities used when building bioinformatics tools";
license = licenses.unlicense;
maintainers = with maintainers; [ ris ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -150,6 +150,8 @@ in {

accupy = callPackage ../development/python-modules/accupy { };

acebinf = callPackage ../development/python-modules/acebinf { };

acme = callPackage ../development/python-modules/acme { };

acme-tiny = callPackage ../development/python-modules/acme-tiny { };
Expand Down

0 comments on commit e61102d

Please sign in to comment.