mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 23:51:03 +00:00
Merge pull request #113522 from SuperSandro2000/fix-collection15
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}:
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
, six
|
||||
# test dependencies
|
||||
, coverage
|
||||
, flake8
|
||||
, mock
|
||||
, nose
|
||||
, pycodestyle
|
||||
|
||||
@@ -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; {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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 ];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
|
||||
, future, python-language-server, mypy, configparser
|
||||
, pytestCheckHook, mock, isPy3k, pytestcov, coverage
|
||||
, pytestCheckHook, mock, pytestcov, coverage
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, aresponses
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
, fetchFromGitHub
|
||||
, maturin
|
||||
, buildPythonPackage
|
||||
, isPy38
|
||||
, python
|
||||
}:
|
||||
let
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user