mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
33 lines
1,001 B
Nix
33 lines
1,001 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, vapoursynth }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vsutil";
|
|
version = "0.5.0";
|
|
|
|
# there are no tests in the pypi tarball
|
|
src = fetchFromGitHub {
|
|
owner = "Irrational-Encoding-Wizardry";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0pv3910g5cdx132cq9f3g7rb3yxyxyvw9110vsl196xswkccl8n8";
|
|
};
|
|
|
|
patches = [
|
|
# Vapoursynth is not recognised during installation. Since this package
|
|
# provides tests, a dependency problem should be catched by them.
|
|
./disable-vapoursynth-install-requirement.diff
|
|
# By default, test failure does not fail the build.
|
|
./fail-tests.diff
|
|
];
|
|
|
|
checkInputs = [ vapoursynth ];
|
|
|
|
meta = with lib; {
|
|
description = "A collection of general purpose Vapoursynth functions to be reused in modules and scripts";
|
|
homepage = "https://github.com/Irrational-Encoding-Wizardry/vsutil";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sbruder ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|