Merge pull request #281016 from mweinelt/pyatem-0.10.0

python311Packages.pyatem: 0.9.0 -> 0.10.0; openswitcher: 0.9.1 -> 0.10.0
This commit is contained in:
Peder Bergebakken Sundt 2024-01-21 21:45:46 +01:00 committed by GitHub
commit fd9870bf32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 13 deletions

View File

@ -14,14 +14,14 @@
python3Packages.buildPythonApplication rec {
pname = "openswitcher";
version = "0.9.1";
version = "0.10.0";
format = "other";
src = fetchFromSourcehut {
owner = "~martijnbraam";
repo = "pyatem";
rev = version;
hash = "sha256-264XqBl+1qsAc5vOxJabbkubY+F72xo06WWishVEQOI=";
hash = "sha256-O+f1vVwfGJjLem25hsYE1Q1V4vzjrc0HxTBUCANCEwE=";
};
outputs = [

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
'';