depot/third_party/nixpkgs/pkgs/development/python-modules/pyfantom/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
506 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;
};
}