python311Packages.mss: 7.0.1 -> 9.0.1

Changelog: https://github.com/BoboTiG/python-mss/blob/v9.0.1/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-06-30 20:12:50 +02:00
parent 4586970ee7
commit c8c9b78122

View File

@ -6,22 +6,24 @@
buildPythonPackage rec {
pname = "mss";
version = "7.0.1";
version = "9.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-8UzuUokDw7AdO48SCc1JhCL3Hj0NLZLFuTPt07l3ICI=";
hash = "sha256-bre5AIzydCiBH6M66zXzM024Hj98wt1J7HxuWpSznxI=";
};
# By default it attempts to build Windows-only functionality
prePatch = ''
rm mss/windows.py
# By default it attempts to build Windows-only functionality
rm src/mss/windows.py
'';
# Skipping tests due to most relying on DISPLAY being set
doCheck = false;
pythonImportsCheck = [
"mss"
];
@ -29,6 +31,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Cross-platform multiple screenshots module";
homepage = "https://github.com/BoboTiG/python-mss";
changelog = "https://github.com/BoboTiG/python-mss/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ austinbutler ];
};