15 buildPythonPackage rec {
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
25 rev = "refs/tags/${version}";
26 hash = "sha256-NtTw7sF1WfVebUk1wHrM8FHAe3/FXDcMApPkDbw0WXo=";
33 propagatedBuildInputs = [
39 passthru.optional-dependencies = {
48 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
50 pythonImportsCheck = [
55 description = "Library for fuzzy logic";
56 homepage = "https://github.com/aresio/simpful";
57 changelog = "https://github.com/aresio/simpful/releases/tag/${version}";
58 license = with licenses; [ lgpl3Only ];
59 maintainers = with maintainers; [ fab ];
60 broken = stdenv.isDarwin;