python3Packages.mss: 6.0.0 -> 6.1.0

This commit is contained in:
R. RyanTM 2020-11-10 12:11:14 +00:00 committed by Sandro Jäckel
parent 379aaa1e0c
commit 3873438b8f
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -2,16 +2,14 @@
buildPythonPackage rec {
pname = "mss";
version = "6.0.0";
version = "6.1.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0dicp55adbqxb7hqlck95hngb1klv5s26lszw3xim30k18bwqaxl";
sha256 = "aebd069f3e05667fe9c7b9fa4b1771fe42a4710ce1058ce0236936ce06fa5394";
};
propagatedBuildInputs = [ ];
# By default it attempts to build Windows-only functionality
prePatch = ''
rm mss/windows.py
@ -22,7 +20,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Cross-platform multiple screenshots module in pure Python";
homepage = "https://github.com/BoboTiG/mss/";
homepage = "https://github.com/BoboTiG/python-mss";
license = licenses.mit;
maintainers = with maintainers; [ austinbutler ];
};