nixpkgs/pkgs/development/python-modules/can/default.nix

44 lines
1 KiB
Nix
Raw Normal View History

2018-02-01 22:30:26 +01:00
{ lib
, buildPythonPackage
2019-03-01 18:01:51 +01:00
, fetchFromGitHub
, pythonOlder
2018-07-24 17:28:26 +02:00
, wrapt
2019-03-01 18:01:51 +01:00
, typing
2018-02-01 22:30:26 +01:00
, pyserial
, nose
2018-07-24 17:28:26 +02:00
, mock
2019-03-01 18:01:51 +01:00
, hypothesis
, future
2018-07-24 17:28:26 +02:00
, pytest
, pytest-timeout }:
2018-02-01 22:30:26 +01:00
buildPythonPackage rec {
pname = "python-can";
2019-03-01 18:01:51 +01:00
version = "3.1.0";
2018-02-01 22:30:26 +01:00
2019-03-01 18:01:51 +01:00
# PyPI tarball is missing some tests and is missing __init__.py in test
# directory causing the tests to fail. See:
# https://github.com/hardbyte/python-can/issues/518
src = fetchFromGitHub {
repo = pname;
owner = "hardbyte";
rev = "v${version}";
sha256 = "01lfsh7drm4qvv909x9i0vnhskdh27mcb5xa86sv9m3zfpq8cjis";
2018-02-01 22:30:26 +01:00
};
2019-03-01 18:01:51 +01:00
propagatedBuildInputs = [ wrapt pyserial ] ++ lib.optional (pythonOlder "3.5") typing;
checkInputs = [ nose mock pytest pytest-timeout hypothesis future ];
2018-07-24 17:28:26 +02:00
2019-03-01 18:01:51 +01:00
# Add the scripts to PATH
2018-07-24 17:28:26 +02:00
checkPhase = ''
2019-03-01 18:01:51 +01:00
PATH=$out/bin:$PATH pytest -c /dev/null
2018-07-24 17:28:26 +02:00
'';
2018-02-01 22:30:26 +01:00
meta = with lib; {
homepage = https://github.com/hardbyte/python-can;
description = "CAN support for Python";
license = licenses.lgpl3;
maintainers = with maintainers; [ sorki ];
};
}