Merge pull request #107590 from Mic92/mpd2

python3Packages.mpd2: 1.0.0 -> 3.0.1
This commit is contained in:
Sandro 2020-12-25 21:21:36 +01:00 committed by GitHub
commit 813c413795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,17 +1,19 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder
, python , python
, mock , mock
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-mpd2"; pname = "python-mpd2";
version = "1.0.0"; version = "3.0.1";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "tar.bz2";
sha256 = "772fa6861273bb9f363a97987c2c45ca3965eb770570f1f02566efec9c89fc5f"; sha256 = "772fa6861273bb9f363a97987c2c45ca3965eb770570f1f02566efec9c89fc5f";
}; };