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