Merge pull request #113522 from SuperSandro2000/fix-collection15

This commit is contained in:
Sandro
2021-02-18 01:45:41 +01:00
committed by GitHub
18 changed files with 42 additions and 49 deletions

View File

@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, isPy3k
, fetchPypi
@@ -72,5 +73,7 @@ buildPythonPackage rec {
description = "A modular, fast, simple, static website and blog generator";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
# all tests fail
broken = stdenv.isDarwin;
};
}

View File

@@ -1,7 +1,6 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, fetchpatch
, alembic
@@ -47,10 +46,7 @@
, tzlocal
, unicodecsv
, zope_deprecation
, enum34
, typing
, nose
, python
, pythonOlder
, pythonAtLeast
}:

View File

@@ -6,7 +6,6 @@
, six
# test dependencies
, coverage
, flake8
, mock
, nose
, pycodestyle

View File

@@ -24,7 +24,6 @@
buildPythonPackage rec {
pname = "intake";
version = "0.6.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
@@ -73,7 +72,7 @@ buildPythonPackage rec {
"http"
# broken test
"test_read_pattern_with"
"test_read_pattern"
];
meta = with lib; {

View File

@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
@@ -155,5 +156,7 @@ buildPythonPackage rec {
homepage = "https://jupyter.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ ixxie cstrahan ];
# E OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found
broken = stdenv.isDarwin;
};
}

View File

@@ -49,7 +49,7 @@ buildPythonPackage rec {
"test_filter_cmd_invalid_filter"
"test_inline_merge"
"test_interrogate_filter_no_repo"
"test_merge_input_strategy_inline_source_conflict"
"test_merge"
];
nativeBuildInputs = [ setuptools_scm ];

View File

@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, future, python-language-server, mypy, configparser
, pytestCheckHook, mock, isPy3k, pytestcov, coverage
, pytestCheckHook, mock, pytestcov, coverage
, fetchpatch
}:

View File

@@ -1,6 +1,5 @@
{ lib
, aiohttp
, async-timeout
, aresponses
, buildPythonPackage
, fetchFromGitHub

View File

@@ -3,7 +3,6 @@
, fetchFromGitHub
, maturin
, buildPythonPackage
, isPy38
, python
}:
let

View File

@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
}:
@@ -16,6 +17,7 @@ buildPythonPackage rec {
homepage = "http://yapsy.sourceforge.net/";
description = "Yet another plugin system";
license = licenses.bsd0;
# tests fail and are not using pytest to easily disable them
broken = stdenv.isDarwin;
};
}