python3Packages.pyftdi: init at 0.29.4
This commit is contained in:
parent
fc5fe1f898
commit
1bcfffdb1e
26
pkgs/development/python-modules/pyftdi/default.nix
Normal file
26
pkgs/development/python-modules/pyftdi/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
, pyusb
|
||||||
|
, pyserial
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyftdi";
|
||||||
|
version = "0.29.4";
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0jy0xbqvmhy0nq9v86759d96raa8p52yq8ik3ji5kjlx7cizq67v";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyusb pyserial ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "User-space driver for modern FTDI devices";
|
||||||
|
homepage = "http://github.com/eblot/pyftdi";
|
||||||
|
license = lib.licenses.lgpl2;
|
||||||
|
};
|
||||||
|
}
|
@ -677,6 +677,8 @@ in {
|
|||||||
|
|
||||||
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
||||||
|
|
||||||
|
pyftdi = callPackage ../development/python-modules/pyftdi { };
|
||||||
|
|
||||||
pygame = callPackage ../development/python-modules/pygame { };
|
pygame = callPackage ../development/python-modules/pygame { };
|
||||||
|
|
||||||
pygame_sdl2 = callPackage ../development/python-modules/pygame_sdl2 { };
|
pygame_sdl2 = callPackage ../development/python-modules/pygame_sdl2 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user