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

Commits on Oct 3, 2019

  1. gnome15: mark as broken

    It doesn't support Python 3 and newer versions of libraries are Python 2-only.
    abbradar committed Oct 3, 2019
    Copy the full SHA
    0c02eca View commit details
  2. python2.pkgs.mkrose: mark as broken

    It supports only Python 3 now.
    abbradar committed Oct 3, 2019
    Copy the full SHA
    2dfb002 View commit details
Showing with 5 additions and 1 deletion.
  1. +3 −0 pkgs/applications/misc/gnome15/default.nix
  2. +2 −1 pkgs/development/python-modules/mlrose/default.nix
3 changes: 3 additions & 0 deletions pkgs/applications/misc/gnome15/default.nix
Original file line number Diff line number Diff line change
@@ -28,6 +28,9 @@ stdenv.mkDerivation {

meta = with stdenv.lib; {
description = "A set of tools for configuring the Logitech G15 keyboard";
# Doesn't work with new `keyring` library which is Python 3-only now.
# https://github.com/Gnome15/gnome15/issues/29
broken = true;
license = licenses.gpl3;
homepage = https://gnome15.org/;
platforms = platforms.linux;
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/mlrose/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, scikitlearn }:
{ stdenv, isPy27, buildPythonPackage, fetchPypi, scikitlearn }:

buildPythonPackage rec {
pname = "mlrose";
version = "1.2.0";
disabled = isPy27;

src = fetchPypi {
inherit pname version;