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: d18403953f5c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 57d0c8106cf6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 13, 2020

  1. python3Packages.solo-python: 0.0.18 -> 0.0.21

    + fixes 74835
    wucke13 authored and Jon committed Jan 13, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    mogorman Matthew O'Gorman
    Copy the full SHA
    57d0c81 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/development/python-modules/solo-python/default.nix
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/solo-python/default.nix
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@

buildPythonPackage rec {
pname = "solo-python";
version = "0.0.18";
version = "0.0.21";
format = "flit";
disabled = pythonOlder "3.6"; # only python>=3.6 is supported

src = fetchFromGitHub {
owner = "solokeys";
repo = pname;
rev = version;
sha256 = "01mgppjvxlr93vrgz7bzisghpg1vqyaj4cg5wngk0h499iyx4d9q";
sha256 = "07r451dp3ma1mh735b2kjv86a4jkjhmag70cjqf73z7b61dmzl1q";
};

# replaced pinned fido, with unrestricted fido version
@@ -48,6 +48,5 @@
homepage = "https://github.com/solokeys/solo-python";
maintainers = with maintainers; [ wucke13 ];
license = with licenses; [ asl20 mit ];
broken = true; # no longer compatible with fido2
};
}