mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
pythonPackages.nx-python: refactor move to python-modules
This commit is contained in:
parent
d7da2d4e2b
commit
b1549317ac
36
pkgs/development/python-modules/nxt-python/default.nix
Normal file
36
pkgs/development/python-modules/nxt-python/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchgit
|
||||
, isPy3k
|
||||
, pyusb
|
||||
, pybluez
|
||||
, pyfantom
|
||||
, git
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "unstable-20160819";
|
||||
pname = "nxt-python";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchgit {
|
||||
url = "http://github.com/Eelviny/nxt-python";
|
||||
rev = "479e20b7491b28567035f4cee294c4a2af629297";
|
||||
sha256 = "0mcsajhgm2wy4iy2lhmyi3xibgmbixbchanzmlhsxk6qyjccn9r9";
|
||||
branchName= "pyusb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyusb pybluez pyfantom git ];
|
||||
|
||||
# Tests fail on Mac dependency
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python driver/interface for Lego Mindstorms NXT robot";
|
||||
homepage = https://github.com/Eelviny/nxt-python;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
};
|
||||
|
||||
}
|
@ -1996,32 +1996,7 @@ in {
|
||||
|
||||
Nikola = callPackage ../development/python-modules/Nikola { };
|
||||
|
||||
nxt-python = buildPythonPackage rec {
|
||||
version = "unstable-20160819";
|
||||
pname = "nxt-python";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
propagatedBuildInputs = with self; [ pyusb pybluez pyfantom pkgs.git ];
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = "http://github.com/Eelviny/nxt-python";
|
||||
rev = "479e20b7491b28567035f4cee294c4a2af629297";
|
||||
sha256 = "0mcsajhgm2wy4iy2lhmyi3xibgmbixbchanzmlhsxk6qyjccn9r9";
|
||||
branchName= "pyusb";
|
||||
};
|
||||
|
||||
# Tests fail on Mac dependency
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Python driver/interface for Lego Mindstorms NXT robot";
|
||||
homepage = https://github.com/Eelviny/nxt-python;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
};
|
||||
};
|
||||
nxt-python = callPackage ../development/python-modules/nxt-python { };
|
||||
|
||||
odfpy = callPackage ../development/python-modules/odfpy { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user