pythonPackages.pyfantom: refactor move to python-modules
This commit is contained in:
parent
bdbc70784a
commit
4f7d4bca11
24
pkgs/development/python-modules/pyfantom/default.nix
Normal file
24
pkgs/development/python-modules/pyfantom/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user