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

Commits on Apr 10, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    10292a3 View commit details
  2. Merge pull request #84908 from r-ryantm/auto-update/python2.7-casttube

    python27Packages.casttube: 0.2.0 -> 0.2.1
    marsam authored Apr 10, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    a9dc3c4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/casttube/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/casttube/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};