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

41 lines
822 B
Nix
Raw Normal View History

2018-02-02 00:30:26 +03:00
{ lib
, buildPythonPackage
2019-09-07 14:54:16 +03:00
, fetchPypi
2019-03-01 20:01:51 +03:00
, pythonOlder
2019-09-07 14:54:16 +03:00
, isPy27
, aenum
2018-07-24 18:28:26 +03:00
, wrapt
2019-03-01 20:01:51 +03:00
, typing
2018-02-02 00:30:26 +03:00
, pyserial
, nose
2018-07-24 18:28:26 +03:00
, mock
2019-03-01 20:01:51 +03:00
, hypothesis
, future
2018-07-24 18:28:26 +03:00
, pytest
, pytest-timeout }:
2018-02-02 00:30:26 +03:00
buildPythonPackage rec {
pname = "python-can";
2019-10-16 12:43:04 +03:00
version = "3.3.2";
2018-02-02 00:30:26 +03:00
2019-09-07 14:54:16 +03:00
src = fetchPypi {
inherit pname version;
2019-10-16 12:43:04 +03:00
sha256 = "5fefb5c1e7e7f07faefc02c6eac79f9b58376f007048a04d8e7f325d48ec6b2e";
2018-02-02 00:30:26 +03:00
};
2019-09-07 14:54:16 +03:00
propagatedBuildInputs = [ wrapt pyserial aenum ] ++ lib.optional (pythonOlder "3.5") typing;
checkInputs = [ nose mock pytest hypothesis future ];
2019-09-07 14:54:16 +03:00
2019-03-01 20:01:51 +03:00
# Add the scripts to PATH
2018-07-24 18:28:26 +03:00
checkPhase = ''
2019-03-01 20:01:51 +03:00
PATH=$out/bin:$PATH pytest -c /dev/null
2018-07-24 18:28:26 +03:00
'';
2018-02-02 00:30:26 +03:00
meta = with lib; {
homepage = https://github.com/hardbyte/python-can;
description = "CAN support for Python";
license = licenses.lgpl3;
maintainers = with maintainers; [ sorki ];
};
}