aboutsummaryrefslogtreecommitdiffstats
path: root/video/manimgl.nix
diff options
context:
space:
mode:
authorNaoki Pross <np@0hm.ch>2021-10-24 23:23:40 +0200
committerNaoki Pross <np@0hm.ch>2021-10-24 23:23:40 +0200
commitaf385473f8ab3c47024612635151bf0f98288f7d (patch)
tree412d14f42ace4a1cc279c08ed8814b900f78d7f2 /video/manimgl.nix
parentCreate QPSK simulation without QT GUI (diff)
downloadFading-af385473f8ab3c47024612635151bf0f98288f7d.tar.gz
Fading-af385473f8ab3c47024612635151bf0f98288f7d.zip
Create TimeDependentComplexPlane tool for video
To draw a QAM signal we will need a way to plot a time dependent complex function. So I made a thing that is just a complex plane + a time axis.
Diffstat (limited to 'video/manimgl.nix')
-rw-r--r--video/manimgl.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/video/manimgl.nix b/video/manimgl.nix
deleted file mode 100644
index cdab07e..0000000
--- a/video/manimgl.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, pkgs, buildPythonApplication, buildPythonPackage, fetchPypi, pythonOlder,
- manimpango, mapbox-earcut }:
-
-buildPythonApplication rec {
- pname = "manimgl";
- version = "1.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1bsrn72vjzfz3ldh3cjn9r2gxr18408ja2shz50qwh7jnwi8alyb";
- };
-
- preConfigure = ''
- sed -i '/argparse/d' manimgl.egg-info/requires.txt
- sed -i '/argparse/d' setup.cfg
- '';
-
- doCheck = false;
-
- propagatedBuildInputs = [ manimpango mapbox-earcut ] ++ (with pkgs; [
- texlive.combined.scheme-full ffmpeg
- ]) ++ (with pkgs.python3Packages; [
- cython sympy numpy pydub scipy pyyaml pyopengl pyopengl-accelerate moderngl moderngl-window
- matplotlib colour rich screeninfo tqdm validators
- ]);
-
- disabled = pythonOlder "3.7";
-
- meta = { };
-}