python3Packages.solo-python: remove superfluous disabled (#478400)

This commit is contained in:
Nick Cao
2026-01-09 21:51:10 +00:00
committed by GitHub
2 changed files with 5 additions and 9 deletions
@@ -17,20 +17,18 @@
buildPythonPackage rec {
pname = "solo-python";
version = "0.1.1";
format = "pyproject";
disabled = pythonOlder "3.6";
pyproject = true;
src = fetchFromGitHub {
owner = "solokeys";
repo = "solo-python";
rev = version;
tag = version;
hash = "sha256-XVPYr7JwxeZfZ68+vQ7a7MNiAfJ2bvMbM3R1ryVJ+OU=";
};
nativeBuildInputs = [ flit ];
build-system = [ flit ];
propagatedBuildInputs = [
dependencies = [
click
cryptography
ecdsa
+1 -3
View File
@@ -17614,9 +17614,7 @@ self: super: with self; {
solidpython2 = callPackage ../development/python-modules/solidpython2 { };
solo-python = disabledIf (!pythonAtLeast "3.6") (
callPackage ../development/python-modules/solo-python { }
);
solo-python = callPackage ../development/python-modules/solo-python { };
somajo = callPackage ../development/python-modules/somajo { };