mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
26 lines
510 B
Nix
26 lines
510 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchgit,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "pyfantom";
|
|
version = "unstable-2013-12-18";
|
|
format = "setuptools";
|
|
|
|
src = fetchgit {
|
|
url = "http://git.ni.fr.eu.org/pyfantom.git";
|
|
sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
|
|
};
|
|
|
|
# No tests included
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pyfantom.ni.fr.eu.org/";
|
|
description = "Wrapper for the LEGO Mindstorms Fantom Driver";
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|