Merge pull request #104808 from SuperSandro2000/auto-update/python3.7-mss

python3Packages.mss: 6.0.0 -> 6.1.0
This commit is contained in:
Sandro 2020-11-24 23:59:13 +01:00 committed by GitHub
commit 0188a58e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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