Merge pull request #170107 from fabaff/bottleneck-fix
python3Packages.bottleneck: disable failing test
This commit is contained in:
commit
0feb008525
1 changed files with 30 additions and 15 deletions
|
@ -1,32 +1,47 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib
|
||||||
, nose
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
, numpy
|
, numpy
|
||||||
, pytest
|
, pytestCheckHook
|
||||||
, python
|
, python
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Bottleneck";
|
pname = "bottleneck";
|
||||||
version = "1.3.4";
|
version = "1.3.4";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "Bottleneck";
|
||||||
sha256 = "sha256-F2Sn9K1YxVhyPFQoR+s2erC7ttiApOXV7vMKDs5c7Oo=";
|
inherit version;
|
||||||
|
hash = "sha256-F2Sn9K1YxVhyPFQoR+s2erC7ttiApOXV7vMKDs5c7Oo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy ];
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
checkInputs = [
|
||||||
substituteInPlace setup.py --replace "__builtins__.__NUMPY_SETUP__ = False" ""
|
pytestCheckHook
|
||||||
'';
|
];
|
||||||
|
|
||||||
checkInputs = [ pytest nose ];
|
pytestFlagsArray = [
|
||||||
checkPhase = ''
|
"$out/${python.sitePackages}"
|
||||||
py.test -p no:warnings $out/${python.sitePackages}
|
];
|
||||||
'';
|
|
||||||
|
disabledTests = [
|
||||||
|
"test_make_c_files"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"bottleneck"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Fast NumPy array functions written in C";
|
description = "Fast NumPy array functions";
|
||||||
homepage = "https://github.com/pydata/bottleneck";
|
homepage = "https://github.com/pydata/bottleneck";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
|
|
Loading…
Reference in a new issue