Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyfantom / default.nix
blob106bfa8d893f1c07e03ce13f1d6b855f0778a44e
1 { lib
2 , buildPythonPackage
3 , fetchgit
4 }:
6 buildPythonPackage {
7   pname = "pyfantom";
8   version = "unstable-2013-12-18";
9   format = "setuptools";
11   src = fetchgit {
12     url = "http://git.ni.fr.eu.org/pyfantom.git";
13     sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
14   };
16   # No tests included
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://pyfantom.ni.fr.eu.org/";
21     description = "Wrapper for the LEGO Mindstorms Fantom Driver";
22     license = licenses.gpl2;
23   };