deeptools: Fix tests

This commit is contained in:
Sandro 2020-10-30 09:42:10 +01:00 committed by Sandro Jäckel
parent 169637aaec
commit 5f2997686c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,14 +1,14 @@
{ lib { lib, python, fetchFromGitHub }:
, python
}:
with python.pkgs; with python.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "deepTools"; pname = "deepTools";
version = "3.5.0"; version = "3.5.0";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "deeptools";
sha256 = "1a14a29e60be13eac11bd204dab9aef73cd72fe56a94c587333f21087584c0d8"; repo = "deepTools";
rev = version;
sha256 = "1bz8ln32mfc9k8l9wgp034vw80dxh6f92dfqxhcrpggk4akwj6ml";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -23,7 +23,7 @@ buildPythonApplication rec {
deeptoolsintervals deeptoolsintervals
]; ];
checkInputs = [ pytest ]; checkInputs = [ nose ];
meta = with lib; { meta = with lib; {
homepage = "https://deeptools.readthedocs.io/en/develop"; homepage = "https://deeptools.readthedocs.io/en/develop";