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: 406a59080252
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c245e9d2ffc4
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 22, 2021

  1. python3Packages.mpd2: 3.0.2 -> 3.0.3

    Fixes early disconnects when using the async MPDClient.
    mweinelt committed Jan 22, 2021
    Copy the full SHA
    dc62266 View commit details
  2. Copy the full SHA
    b4f60bf View commit details
  3. Merge pull request #110530 from mweinelt/python-mpd

    python3Packages.mpd2: 3.0.2 -> 3.0.3
    mweinelt authored Jan 22, 2021
    Copy the full SHA
    c245e9d View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/mpd2/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/mpd2/default.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@

buildPythonPackage rec {
pname = "python-mpd2";
version = "3.0.2";
version = "3.0.3";

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
sha256 = "0ibl2xyj4380ai60i2bfhm8qn1sjyjbwwjmgzfcqa12wlnhck7ki";
sha256 = "1ikvn2qv6cnbjscpbk6hhsqg34h832mxgg6hp1mf4d8d6nwdx4sn";
};

buildInputs = [ mock ];
@@ -27,7 +27,7 @@ buildPythonPackage rec {
description = "A Python client module for the Music Player Daemon";
homepage = "https://github.com/Mic92/python-mpd2";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ rvl mic92 ];
maintainers = with maintainers; [ rvl mic92 hexa ];
};

}