forked from mirrors/nixpkgs
Merge pull request #174212 from ibizaman/up/nxt-python
nxt-python: init at 3.0.1
This commit is contained in:
commit
89893d4497
|
@ -5341,6 +5341,16 @@
|
||||||
githubId = 1031119;
|
githubId = 1031119;
|
||||||
name = "Ian-Woo Kim";
|
name = "Ian-Woo Kim";
|
||||||
};
|
};
|
||||||
|
ibizaman = {
|
||||||
|
email = "ibizapeanut@gmail.com";
|
||||||
|
github = "ibizaman";
|
||||||
|
githubId = 1044950;
|
||||||
|
name = "Pierre Penninckx";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa2048/0xD4C5C37E6031A3FE";
|
||||||
|
fingerprint = "A01F 10C6 7176 B2AE 2A34 1A56 D4C5 C37E 6031 A3FE";
|
||||||
|
}];
|
||||||
|
};
|
||||||
iblech = {
|
iblech = {
|
||||||
email = "iblech@speicherleck.de";
|
email = "iblech@speicherleck.de";
|
||||||
github = "iblech";
|
github = "iblech";
|
||||||
|
|
30
pkgs/development/python-modules/nxt-python/default.nix
Normal file
30
pkgs/development/python-modules/nxt-python/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchgit
|
||||||
|
, isPy3k
|
||||||
|
, pyusb
|
||||||
|
, pybluez
|
||||||
|
, pytest
|
||||||
|
, git
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "3.0.1";
|
||||||
|
pname = "nxt-python";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/schodet/nxt-python.git";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "004c0dr6767bjiddvp0pchcx05falhjzj33rkk03rrl0ha2nhxvz";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyusb pybluez pytest git ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python driver/interface for Lego Mindstorms NXT robot";
|
||||||
|
homepage = "https://github.com/schodet/nxt-python";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ ibizaman ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5865,6 +5865,8 @@ in {
|
||||||
|
|
||||||
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
||||||
|
|
||||||
|
nxt-python = callPackage ../development/python-modules/nxt-python { };
|
||||||
|
|
||||||
python-nvd3 = callPackage ../development/python-modules/python-nvd3 { };
|
python-nvd3 = callPackage ../development/python-modules/python-nvd3 { };
|
||||||
|
|
||||||
py-deprecate = callPackage ../development/python-modules/py-deprecate { };
|
py-deprecate = callPackage ../development/python-modules/py-deprecate { };
|
||||||
|
|
Loading…
Reference in a new issue