aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/canmatrix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/canmatrix
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/canmatrix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/canmatrix/default.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/canmatrix/default.nix b/nixpkgs/pkgs/development/python-modules/canmatrix/default.nix
new file mode 100644
index 00000000000..a6c3f485d74
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/canmatrix/default.nix
@@ -0,0 +1,59 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+, attrs
+, bitstruct
+, future
+, pathlib2
+, typing
+, lxml
+, xlwt
+, xlrd
+, XlsxWriter
+, pyyaml
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "canmatrix";
+ version = "0.7";
+
+ # uses fetchFromGitHub as PyPi release misses test/ dir
+ src = fetchFromGitHub {
+ owner = "ebroecker";
+ repo = pname;
+ rev = version;
+ sha256 = "0q8qb282nfgirl8r2i9c8whm3hvr14ig2r42ssgnv2hya971cwjq";
+ };
+
+ propagatedBuildInputs = [
+ # required
+ attrs
+ bitstruct
+ future
+ pathlib2
+ # optional
+ lxml
+ xlwt
+ xlrd
+ XlsxWriter
+ pyyaml
+ ] ++ lib.optional (pythonOlder "3.5") typing;
+
+ checkInputs = [
+ pytest
+ ];
+
+ checkPhase = ''
+ pytest -s src/canmatrix
+ '';
+
+ 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 ];
+ };
+}
+