pythonPackages.pyfantom: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-26 09:33:43 -04:00 committed by Frederik Rietdijk
parent bdbc70784a
commit 4f7d4bca11
2 changed files with 25 additions and 18 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchgit
}:
buildPythonPackage rec {
pname = "pyfantom";
version = "unstable-2013-12-18";
src = fetchgit {
url = "http://git.ni.fr.eu.org/pyfantom.git";
sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
};
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = http://pyfantom.ni.fr.eu.org/;
description = "Wrapper for the LEGO Mindstorms Fantom Driver";
license = licenses.gpl2;
};
}

View File

@ -3311,24 +3311,7 @@ in {
pyext = callPackage ../development/python-modules/pyext { }; pyext = callPackage ../development/python-modules/pyext { };
pyfantom = buildPythonPackage rec { pyfantom = callPackage ../development/python-modules/pyfantom { };
name = "pyfantom-${version}";
version = "unstable-2013-12-18";
src = pkgs.fetchgit {
url = "http://git.ni.fr.eu.org/pyfantom.git";
sha256 = "1m53n8bxslq5zmvcf7i1xzsgq5bdsf1z529br5ypmj5bg0s86j4q";
};
# No tests included
doCheck = false;
meta = {
homepage = http://pyfantom.ni.fr.eu.org/;
description = "Wrapper for the LEGO Mindstorms Fantom Driver";
license = licenses.gpl2;
};
};
pyfftw = callPackage ../development/python-modules/pyfftw { }; pyfftw = callPackage ../development/python-modules/pyfftw { };