Merge pull request #115306 from SuperSandro2000/fix-collection22

This commit is contained in:
Sandro
2021-03-07 15:58:56 +01:00
committed by GitHub
11 changed files with 88 additions and 110 deletions

View File

@@ -1,9 +1,7 @@
{ lib, buildPythonPackage, python, fetchFromGitHub, fetchpatch, isPy3k
{ lib, buildPythonPackage, python, fetchFromGitHub, isPy3k
, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
, service-identity
, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null
, withManpage ? false }:
, service-identity, gnupg, sphinx, gawk, procps, future , withManpage ? false
}:
buildPythonPackage rec {
pname = "alot";
@@ -41,7 +39,7 @@ buildPythonPackage rec {
doCheck = false;
postBuild = lib.optionalString withManpage "make -C docs man";
checkInputs = [ awk future mock gnupg procps ];
checkInputs = [ gawk future mock gnupg procps ];
postInstall = let
completionPython = python.withPackages (ps: [ ps.configobj ]);

View File

@@ -6,6 +6,7 @@
, isPy3k
, sqlalchemy
, pytestCheckHook
, stdenv
}:
buildPythonPackage rec {
@@ -28,6 +29,8 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = lib.optionals stdenv.isDarwin [ "src/crate/client/test_http.py" ];
meta = with lib; {
homepage = "https://github.com/crate/crate-python";
description = "A Python client library for CrateDB";

View File

@@ -3,7 +3,6 @@
, fetchPypi
, grpc
, protobuf
, pytestCheckHook
}:
buildPythonPackage rec {

View File

@@ -66,5 +66,7 @@ buildPythonPackage rec {
license = licenses.mit;
maintainers = with maintainers; [ evax ];
platforms = platforms.unix;
# ModuleNotFoundError: No module named 'sklearn.ensemble.iforest'
broken = true;
};
}