pythonPackages.can: 3.0.0 -> 3.1.0

This commit is contained in:
Jaakko Luttinen 2019-03-01 19:01:51 +02:00
parent e81595e889
commit 0a41afaecd
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964

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; {