Merge pull request #83526 from drewrisinger/dr-pr-python-scikit-build-38

pythonPackages.scikit-build: fix test bug on python3.8
This commit is contained in:
Benjamin Hipple 2020-03-27 20:44:55 -04:00 committed by GitHub
commit ae6bdcc535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,28 @@
{ lib, buildPythonPackage, fetchPypi, wheel, setuptools, packaging { lib
, cmake, ninja, cython, codecov, coverage, six, virtualenv, pathpy , buildPythonPackage
, pytest, pytestcov, pytest-virtualenv, pytest-mock, pytestrunner , fetchPypi
, requests, flake8 }: , fetchpatch
, distro
, packaging
, setuptools
, wheel
# Test Inputs
, cmake
, codecov
, coverage
, cython
, flake8
, ninja
, pathpy
, pytest
, pytestcov
, pytest-mock
, pytestrunner
, pytest-virtualenv
, requests
, six
, virtualenv
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "scikit-build"; pname = "scikit-build";
@ -12,15 +33,41 @@ buildPythonPackage rec {
sha256 = "7342017cc82dd6178e3b19377389b8a8d1f8b429d9cdb315cfb1094e34a0f526"; sha256 = "7342017cc82dd6178e3b19377389b8a8d1f8b429d9cdb315cfb1094e34a0f526";
}; };
propagatedBuildInputs = [ wheel setuptools packaging ]; propagatedBuildInputs = [
checkInputs = [ distro
cmake ninja cython codecov coverage six pathpy packaging
pytest pytestcov pytest-mock pytest-virtualenv pytestrunner setuptools
requests flake8 wheel
];
checkInputs = [
cmake
codecov
coverage
cython
flake8
ninja
pathpy
pytest
pytestcov
pytest-mock
pytestrunner
pytest-virtualenv
requests
six
virtualenv
]; ];
dontUseCmakeConfigure = true; dontUseCmakeConfigure = true;
# scikit-build PR #458. Remove in version > 0.10.0
patches = [
(fetchpatch {
name = "python38-platform_linux_distribution-fix-458";
url = "https://github.com/scikit-build/scikit-build/commit/faa7284e5bc4c72bc8744987acdf3297b5d2e7e4.patch";
sha256 = "1hgl3cnkf266zaw534b64c88waxfz9721wha0m6j3hsnxk76ayjv";
})
];
disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([ disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
"test_hello_develop" # tries setuptools develop install "test_hello_develop" # tries setuptools develop install
"test_source_distribution" # pip has no way to install missing dependencies "test_source_distribution" # pip has no way to install missing dependencies
@ -35,9 +82,9 @@ buildPythonPackage rec {
''; '';
meta = with lib; { meta = with lib; {
homepage = http://scikit-build.org/;
description = "Improved build system generator for CPython C/C++/Fortran/Cython extensions"; description = "Improved build system generator for CPython C/C++/Fortran/Cython extensions";
homepage = "http://scikit-build.org/";
license = with licenses; [ mit bsd2 ]; # BSD due to reuses of PyNE code license = with licenses; [ mit bsd2 ]; # BSD due to reuses of PyNE code
maintainers = [ maintainers.FlorianFranzen ]; maintainers = with maintainers; [ FlorianFranzen ];
}; };
} }