pythonPackages.deeptoolsIntervals: init at 0.1.9
This commit is contained in:
parent
1994ed8c7e
commit
f379992680
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
, zlib
|
||||
, lzma
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deeptoolsintervals";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib lzma ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://deeptools.readthedocs.io/en/develop";
|
||||
description = "Helper library for deeptools";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ scalavision ];
|
||||
};
|
||||
}
|
@ -521,6 +521,8 @@ in {
|
||||
|
||||
deap = callPackage ../development/python-modules/deap { };
|
||||
|
||||
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };
|
||||
|
||||
dkimpy = callPackage ../development/python-modules/dkimpy { };
|
||||
|
||||
dictionaries = callPackage ../development/python-modules/dictionaries { };
|
||||
|
Loading…
Reference in New Issue
Block a user