python311Packages.pyatem: 0.9.0 -> 0.10.0

This commit is contained in:
Martin Weinelt 2024-01-14 22:12:34 +01:00
parent 3763c9f08f
commit f5f3a3fff1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "pyatem";
version = "0.9.0"; # check latest version in setup.py
version = "0.10.0"; # check latest version in setup.py
pyproject = true;
src = fetchFromSourcehut {
owner = "~martijnbraam";
repo = "pyatem";
rev = version;
hash = "sha256-ntwUhgC8Cgrim+kU3B3ckgPDmPe+aEHDP4wsB45KbJg=";
hash = "sha256-O+f1vVwfGJjLem25hsYE1Q1V4vzjrc0HxTBUCANCEwE=";
};
nativeBuildInputs = [
@ -49,15 +49,6 @@ buildPythonPackage rec {
pushd $TESTDIR
'';
disabledTests = lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
# colorspace mapping has weird, but constant offsets on aarch64-linux
"test_blueramp"
"test_greenramp"
"test_hues"
"test_primaries"
"test_redramp"
];
postCheck = ''
popd
'';