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

Commits on Aug 3, 2018

  1. doitlive: use python3Packages

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    2f5bbbe View commit details
  2. Merge pull request #44402 from dotlambda/doitlive-python3

    doitlive: use python3Packages
    Mic92 authored Aug 3, 2018
    Copy the full SHA
    c065349 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/doitlive/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/doitlive/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, pythonPackages }:
{ stdenv, python3Packages }:

pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "doitlive";
version = "3.0.3";

src = pythonPackages.fetchPypi {
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
};

propagatedBuildInputs = with pythonPackages; [ click ];
propagatedBuildInputs = with python3Packages; [ click ];

# disable tests (too many failures)
doCheck = false;