Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 77c85338c4ac
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0188a58e87ed
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 24, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    3873438 View commit details
  2. Merge pull request #104808 from SuperSandro2000/auto-update/python3.7…

    …-mss
    
    python3Packages.mss: 6.0.0 -> 6.1.0
    SuperSandro2000 authored Nov 24, 2020
    Copy the full SHA
    0188a58 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/development/python-modules/mss/default.nix
8 changes: 3 additions & 5 deletions pkgs/development/python-modules/mss/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};