Merge pull request #56298 from jluttine/xlsxwriter-1.1.5

pythonPackages.XlsxWriter: enable tests and pythonPackages.can: 3.0.0 -> 3.1.0
This commit is contained in:
Robert Schütz 2019-03-02 12:55:33 +01:00 committed by GitHub
commit 100ec6c0a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 14 deletions

View File

@ -1,12 +1,17 @@
{lib, buildPythonPackage, fetchPypi}: {lib, buildPythonPackage, fetchFromGitHub}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "XlsxWriter"; pname = "XlsxWriter";
version = "1.1.5"; version = "1.1.5";
src = fetchPypi { # PyPI release tarball doesn't contain tests so let's use GitHub. See:
inherit pname version; # https://github.com/jmcnamara/XlsxWriter/issues/327
sha256 = "de9ef46088489915eaaee00c7088cff93cf613e9990b46b933c98eb46f21b47f"; src = fetchFromGitHub{
owner = "jmcnamara";
repo = pname;
rev = "RELEASE_${version}";
sha256 = "13250y53mr0pki93sqscy2bx01fxh6b6wvvj6m95ky0wqrrbmg39";
}; };
meta = { meta = {
@ -15,4 +20,5 @@ buildPythonPackage rec {
maintainers = with lib.maintainers; [ jluttine ]; maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.bsd2; license = lib.licenses.bsd2;
}; };
} }

View File

@ -1,29 +1,37 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, pythonOlder
, wrapt , wrapt
, typing
, pyserial , pyserial
, nose , nose
, mock , mock
, hypothesis
, future
, pytest , pytest
, pytest-timeout }: , pytest-timeout }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-can"; pname = "python-can";
version = "3.0.0"; version = "3.1.0";
src = fetchPypi { # PyPI tarball is missing some tests and is missing __init__.py in test
inherit pname version; # directory causing the tests to fail. See:
sha256 = "0d2ddb3b663af51b11a4c7fb7a577c63302a831986239f82bb6af65efc065b07"; # https://github.com/hardbyte/python-can/issues/518
src = fetchFromGitHub {
repo = pname;
owner = "hardbyte";
rev = "v${version}";
sha256 = "01lfsh7drm4qvv909x9i0vnhskdh27mcb5xa86sv9m3zfpq8cjis";
}; };
propagatedBuildInputs = [ wrapt pyserial ]; propagatedBuildInputs = [ wrapt pyserial ] ++ lib.optional (pythonOlder "3.5") typing;
checkInputs = [ nose mock pytest pytest-timeout ]; checkInputs = [ nose mock pytest pytest-timeout hypothesis future ];
# Add the scripts to PATH
checkPhase = '' checkPhase = ''
pytest -k "not test_writer_and_reader \ PATH=$out/bin:$PATH pytest -c /dev/null
and not test_reader \
and not test_socketcan_on_ci_server"
''; '';
meta = with lib; { meta = with lib; {