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

60 lines
1 KiB
Nix
Raw Normal View History

2018-02-01 22:31:14 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2019-04-03 15:23:53 +02:00
, pythonOlder
, attrs
, bitstruct
, future
, pathlib2
, typing
2018-02-01 22:31:14 +01:00
, lxml
, xlwt
, xlrd
, XlsxWriter
, pyyaml
2019-04-03 15:23:53 +02:00
, pytest
}:
2018-02-01 22:31:14 +01:00
buildPythonPackage rec {
pname = "canmatrix";
2019-04-03 15:23:53 +02:00
version = "0.7";
2018-02-01 22:31:14 +01:00
# uses fetchFromGitHub as PyPi release misses test/ dir
src = fetchFromGitHub {
owner = "ebroecker";
repo = pname;
rev = version;
2019-04-03 15:23:53 +02:00
sha256 = "0q8qb282nfgirl8r2i9c8whm3hvr14ig2r42ssgnv2hya971cwjq";
2018-02-01 22:31:14 +01:00
};
2019-04-03 15:23:53 +02:00
propagatedBuildInputs = [
# required
attrs
bitstruct
future
pathlib2
# optional
lxml
xlwt
xlrd
XlsxWriter
pyyaml
] ++ lib.optional (pythonOlder "3.5") typing;
checkInputs = [
pytest
];
2018-02-01 22:31:14 +01:00
checkPhase = ''
2019-04-03 15:23:53 +02:00
pytest -s src/canmatrix
2018-02-01 22:31:14 +01:00
'';
meta = with lib; {
homepage = https://github.com/ebroecker/canmatrix;
description = "Support and convert several CAN (Controller Area Network) database formats .arxml .dbc .dbf .kcd .sym fibex xls(x)";
license = licenses.bsd2;
maintainers = with maintainers; [ sorki ];
};
}