pythonPackages.vidstab: init at 0.1.5

This commit is contained in:
Chris Ostrouchov 2018-10-10 00:58:59 -04:00 committed by Frederik Rietdijk
parent 77e8b33cb7
commit 045a4a4b72
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, imutils
, progress
, matplotlib
, pytest
}:
buildPythonPackage rec {
version = "0.1.5";
pname = "vidstab";
src = fetchPypi {
inherit pname version;
sha256 = "b775652cc4f41812de04bc443ad522c1bdaef456a00c74857e9ebc5d2066e362";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy pandas imutils progress matplotlib ];
# tests not packaged with pypi
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/AdamSpannbauer/python_video_stab;
description = "Video Stabilization using OpenCV";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -646,6 +646,8 @@ in {
unifi = callPackage ../development/python-modules/unifi { };
vidstab = callPackage ../development/python-modules/vidstab { };
pyunbound = callPackage ../tools/networking/unbound/python.nix { };
# packages defined here