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

Commits on Jan 2, 2018

  1. toot: 0.15.0 -> 0.16.2

    matthiasbeyer committed Jan 2, 2018
    Copy the full SHA
    b222e44 View commit details
  2. Merge pull request #33338 from matthiasbeyer/update-toot

    toot: 0.15.0 -> 0.16.2
    FRidh authored Jan 2, 2018
    Copy the full SHA
    58f9fd6 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/applications/misc/toot/default.nix
12 changes: 6 additions & 6 deletions pkgs/applications/misc/toot/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, python3Packages }:

pythonPackages.buildPythonApplication rec {
version = "0.15.0";
python3Packages.buildPythonApplication rec {
version = "0.16.2";
name = "toot-${version}";

src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = "${version}";
sha256 = "08k913gw0ip2q686z9k63bcn1n5s4w6b7jj6jmmamm427xmibkph";
sha256 = "19n6rmm44y24zvkpk56vd2xmx49sn6wc5qayi1jm83jlnlbbwfh7";
};

checkInputs = with pythonPackages; [ pytest ];
checkInputs = with python3Packages; [ pytest ];

propagatedBuildInputs = with pythonPackages;
propagatedBuildInputs = with python3Packages;
[ requests beautifulsoup4 future ];

checkPhase = ''