pythonPackages.notmuch2: Disable tests
This commit is contained in:
parent
aa3a78911a
commit
eea84e25e6
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, notmuch
|
, notmuch
|
||||||
, python
|
, python
|
||||||
|
@ -13,6 +14,10 @@ buildPythonPackage {
|
||||||
|
|
||||||
buildInputs = [ python notmuch cffi ];
|
buildInputs = [ python notmuch cffi ];
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "notmuch2" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Pythonic bindings for the notmuch mail database using CFFI";
|
description = "Pythonic bindings for the notmuch mail database using CFFI";
|
||||||
homepage = "https://notmuchmail.org/";
|
homepage = "https://notmuchmail.org/";
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
<<<<<<< HEAD
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
|
||||||
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, pythonOlder, isPy27
|
|
||||||
=======
|
|
||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
|
|
||||||
>>>>>>> 15db9043242... pythonPackages.python-language-server: 0.34.1 -> 0.36.2
|
|
||||||
, backports_functools_lru_cache, configparser, futures, future, jedi, pluggy, python-jsonrpc-server, flake8
|
, backports_functools_lru_cache, configparser, futures, future, jedi, pluggy, python-jsonrpc-server, flake8
|
||||||
, pytestCheckHook, mock, pytestcov, coverage, setuptools, ujson, flaky
|
, pytestCheckHook, mock, pytestcov, coverage, setuptools, ujson, flaky
|
||||||
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
||||||
|
|
Loading…
Reference in New Issue