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