mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.ha-ffmpeg: init at 1.9
This commit is contained in:
parent
4af9a88107
commit
083ac5add3
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/ha-ffmpeg/default.nix
Normal file
28
pkgs/development/python-modules/ha-ffmpeg/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
||||||
|
, ffmpeg, async-timeout }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ha-ffmpeg";
|
||||||
|
version = "1.9";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0644j5fqw8p6li6nrnm1rw7nhvsixq1c7gik3f1yx50776yg05i8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ffmpeg ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ async-timeout ];
|
||||||
|
|
||||||
|
# only manual tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/pvizeli/ha-ffmpeg;
|
||||||
|
description = "Library for home-assistant to handle ffmpeg";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -241,6 +241,8 @@ in {
|
||||||
hdf5 = pkgs.hdf5-mpi;
|
hdf5 = pkgs.hdf5-mpi;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
||||||
|
|
||||||
habanero = callPackage ../development/python-modules/habanero { };
|
habanero = callPackage ../development/python-modules/habanero { };
|
||||||
|
|
||||||
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
||||||
|
|
Loading…
Reference in a new issue