Merge pull request #288619 from pbsds/bump-ffmpy-1707845980

python311Packages.ffmpy: 0.3.1 -> 0.3.2
This commit is contained in:
Peder Bergebakken Sundt 2024-02-16 16:38:35 +01:00 committed by GitHub
commit 6b5a8f6dcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, pytestCheckHook
, go
, ffmpeg-headless
@ -9,8 +10,8 @@
buildPythonPackage rec {
pname = "ffmpy";
version = "0.3.1";
format = "setuptools";
version = "0.3.2";
pyproject = true;
disabled = pythonOlder "3.6";
@ -18,7 +19,7 @@ buildPythonPackage rec {
owner = "Ch00k";
repo = "ffmpy";
rev = "refs/tags/${version}";
hash = "sha256-kuLhmCG80BmXdqpW67UanBnuYiL2Oh1jKt7IgmVNEAM=";
hash = "sha256-q41JjAWcIiD2nJck5Zzb/lhfIZ3xJGU1I2crsMN0T8Q=";
};
postPatch = ''
@ -34,6 +35,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "ffmpy" ];
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
go