python-can: init at 2.0.0

This commit is contained in:
Richard Marko 2018-02-01 22:30:26 +01:00
parent 27a4a5511d
commit 096a07f5e2
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pyserial
, nose
, mock }:
buildPythonPackage rec {
pname = "python-can";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1c6zfd29ck9ffdklfb5xgxvfl52xdaqd89isykkypm1ll97yk2fs";
};
propagatedBuildInputs = [ pyserial ];
checkInputs = [ nose mock ];
meta = with lib; {
homepage = https://github.com/hardbyte/python-can;
description = "CAN support for Python";
license = licenses.lgpl3;
maintainers = with maintainers; [ sorki ];
};
}

View File

@ -2014,6 +2014,7 @@ in {
doCheck = false;
});
can = callPackage ../development/python-modules/can {};
cairocffi = buildPythonPackage rec {
name = "cairocffi-0.7.2";