1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, numpy
5, pandas
6, imutils
7, progress
8, matplotlib
9, pytest
10}:
11
12buildPythonPackage rec {
13 version = "1.7.3";
14 pname = "vidstab";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "649a77a0c1b670d13a1bf411451945d7da439364dc0c33ee3636a23f1d82b456";
19 };
20
21 checkInputs = [ pytest ];
22 propagatedBuildInputs = [ numpy pandas imutils progress matplotlib ];
23
24 # tests not packaged with pypi
25 doCheck = false;
26
27 meta = with stdenv.lib; {
28 homepage = "https://github.com/AdamSpannbauer/python_video_stab";
29 description = "Video Stabilization using OpenCV";
30 license = licenses.mit;
31 maintainers = [ maintainers.costrouc ];
32 };
33}