lol

python3Packages.solo-python: 0.0.31 -> 0.1.1

+ mark broken

+8 -9
+8 -9
pkgs/development/python-modules/solo-python/default.nix
··· 12 , requests 13 }: 14 15 - buildPythonPackage rec { 16 pname = "solo-python"; 17 - version = "0.0.31"; 18 format = "flit"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "solokeys"; 24 repo = pname; 25 rev = version; 26 - sha256 = "sha256-OguAHeNpom+zthREzdhejy5HJUIumrtwB0WJAwUNiSA="; 27 }; 28 - 29 - patchPhase = '' 30 - sed -i '/fido2/c\"fido2",' pyproject.toml 31 - ''; 32 33 propagatedBuildInputs = [ 34 click ··· 54 ]; 55 56 meta = with lib; { 57 - description = "Python tool and library for SoloKeys"; 58 - homepage = "https://github.com/solokeys/solo-python"; 59 maintainers = with maintainers; [ wucke13 ]; 60 license = with licenses; [ asl20 mit ]; 61 }; 62 }
··· 12 , requests 13 }: 14 15 + buildPythonPackage rec { 16 pname = "solo-python"; 17 + version = "0.1.1"; 18 format = "flit"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "solokeys"; 24 repo = pname; 25 rev = version; 26 + sha256 = "sha256-XVPYr7JwxeZfZ68+vQ7a7MNiAfJ2bvMbM3R1ryVJ+OU="; 27 }; 28 29 propagatedBuildInputs = [ 30 click ··· 50 ]; 51 52 meta = with lib; { 53 + description = "Python tool and library for SoloKeys Solo 1"; 54 + homepage = "https://github.com/solokeys/solo1-cli"; 55 maintainers = with maintainers; [ wucke13 ]; 56 license = with licenses; [ asl20 mit ]; 57 + # not compatible with fido2 >= 1.0.0 58 + # https://github.com/solokeys/solo1-cli/issues/157 59 + broken = versionAtLeast fido2.version "1.0.0"; 60 }; 61 }