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.2";
14 pname = "vidstab";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "24cb7a25a6ed9a474f4d23c9deecf9163691fcde2559de10897f593ba849266b";
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}