deeptools: Fix tests
This commit is contained in:
parent
169637aaec
commit
5f2997686c
1 changed files with 7 additions and 7 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue