Merge pull request #262311 from scalavision/update-deeptools

deeptools: 3.5.1 -> 3.5.4
This commit is contained in:
Guillaume Girol 2023-10-28 16:51:14 +02:00 committed by GitHub
commit 97da6c943d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,15 +2,17 @@
with python.pkgs; with python.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "deepTools"; pname = "deepTools";
version = "3.5.1"; version = "3.5.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "deeptools"; owner = "deeptools";
repo = "deepTools"; repo = "deepTools";
rev = version; rev = version;
sha256 = "07v8vb2x4b0mgw0mvcj91vj1fqbcwizwsniysl2cvmv93gad8gbp"; sha256 = "sha256-A8YdlMptmJyxWW0EYLjXFIWjIO/mttEC7VYdlCe9MaI=";
}; };
format = "pyproject";
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy numpy
numpydoc numpydoc
@ -21,9 +23,10 @@ buildPythonApplication rec {
matplotlib matplotlib
plotly plotly
deeptoolsintervals deeptoolsintervals
importlib-metadata
]; ];
nativeCheckInputs = [ nose ]; nativeCheckInputs = [ pytest ];
meta = with lib; { meta = with lib; {
homepage = "https://deeptools.readthedocs.io/en/develop"; homepage = "https://deeptools.readthedocs.io/en/develop";
@ -36,7 +39,7 @@ buildPythonApplication rec {
publication-ready visualizations to identify enrichments and for functional publication-ready visualizations to identify enrichments and for functional
annotations of the genome. annotations of the genome.
''; '';
license = licenses.gpl3; license = with licenses; [ mit bsd3 ];
maintainers = with maintainers; [ scalavision ]; maintainers = with maintainers; [ scalavision ];
}; };
} }