pythonPackages.acebinf: init at 1.0.2
This commit is contained in:
parent
4543e54991
commit
e61102d5c2
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/acebinf/default.nix
Normal file
28
pkgs/development/python-modules/acebinf/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue