pythonPackages.vidstab: init at 0.1.5
This commit is contained in:
parent
77e8b33cb7
commit
045a4a4b72
33
pkgs/development/python-modules/vidstab/default.nix
Normal file
33
pkgs/development/python-modules/vidstab/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user