python-can: init at 2.0.0
This commit is contained in:
parent
27a4a5511d
commit
096a07f5e2
27
pkgs/development/python-modules/can/default.nix
Normal file
27
pkgs/development/python-modules/can/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2014,6 +2014,7 @@ in {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
can = callPackage ../development/python-modules/can {};
|
||||||
|
|
||||||
cairocffi = buildPythonPackage rec {
|
cairocffi = buildPythonPackage rec {
|
||||||
name = "cairocffi-0.7.2";
|
name = "cairocffi-0.7.2";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user