Merge pull request #147366 from fabaff/bump-pychromecast

python3Packages.PyChromecast: 9.3.1 -> 10.1.1
This commit is contained in:
Fabian Affolter 2021-11-26 00:14:09 +01:00 committed by GitHub
commit 36f621fd0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,27 +1,45 @@
{ lib, fetchPypi, buildPythonPackage, requests, zeroconf, protobuf, casttube, isPy3k }:
{ lib
, buildPythonPackage
, casttube
, fetchPypi
, isPy3k
, protobuf
, requests
, zeroconf
}:
buildPythonPackage rec {
pname = "PyChromecast";
version = "9.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "a1d6807ae0fc455aaeecd2def87c31bb86679a2920cacfa7910db9c9db5085d4";
};
pname = "pychromecast";
version = "10.1.1";
format = "setuptools";
disabled = !isPy3k;
propagatedBuildInputs = [ requests zeroconf protobuf casttube ];
src = fetchPypi {
pname = "PyChromecast";
inherit version;
sha256 = "sha256-M6R9VRrotvkxKVZIKOcuf03LJsn4gSMohwzzAO5FQ48=";
};
propagatedBuildInputs = [
casttube
protobuf
requests
zeroconf
];
# no tests available
doCheck = false;
pythonImportsCheck = [ "pychromecast" ];
pythonImportsCheck = [
"pychromecast"
];
meta = with lib; {
description = "Library for Python to communicate with the Google Chromecast";
homepage = "https://github.com/home-assistant-libs/pychromecast";
license = licenses.mit;
homepage = "https://github.com/home-assistant-libs/pychromecast";
license = licenses.mit;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.unix;
platforms = platforms.unix;
};
}