summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-10 10:08:07 -0500
committerGitHub <noreply@github.com>2020-04-10 10:08:07 -0500
commita9dc3c44d7275dd7b66ae31ec1490f53dba8ed65 (patch)
treef8ffbea3d4999ba693bb7318a8843e19cb6a31ce
parentc2d289935dadf885288c619119050b7be5c08678 (diff)
parent10292a3df7097283e4f9948375f79db1191bd22f (diff)
downloadnixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar.gz
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar.bz2
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar.lz
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar.xz
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.tar.zst
nixpkgs-a9dc3c44d7275dd7b66ae31ec1490f53dba8ed65.zip
Merge pull request #84908 from r-ryantm/auto-update/python2.7-casttube
python27Packages.casttube: 0.2.0 -> 0.2.1
-rw-r--r--pkgs/development/python-modules/casttube/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/casttube/default.nix b/pkgs/development/python-modules/casttube/default.nix
index 5d3b80aeb16..ff8e5614ceb 100644
--- a/pkgs/development/python-modules/casttube/default.nix
+++ b/pkgs/development/python-modules/casttube/default.nix
@@ -2,11 +2,11 @@
 
 buildPythonPackage rec {
   pname = "casttube";
-  version = "0.2.0";
+  version = "0.2.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0g7mksfl341vfsxqvw8h15ci2qwd1rczg41n4fb2hw7y9rikqnzj";
+    sha256 = "10pw2sjy648pvp42lbbdmkkx79bqlkq1xcbzp1frraj9g66azljl";
   };
 
   propagatedBuildInputs = [ requests ];
@@ -16,7 +16,7 @@ buildPythonPackage rec {
 
   meta = with stdenv.lib; {
     description = "Interact with the Youtube Chromecast api";
-    homepage = https://github.com/ur1katz/casttube;
+    homepage = "https://github.com/ur1katz/casttube";
     license = licenses.mit;
     maintainers = with maintainers; [ fpletz ];
   };