16 buildPythonPackage rec {
21 disabled = pythonOlder "3.7";
23 src = fetchFromGitHub {
26 rev = "refs/tags/${version}";
27 hash = "sha256-NtTw7sF1WfVebUk1wHrM8FHAe3/FXDcMApPkDbw0WXo=";
30 nativeBuildInputs = [ setuptools ];
32 propagatedBuildInputs = [
38 optional-dependencies = {
47 ] ++ lib.flatten (builtins.attrValues optional-dependencies);
49 pythonImportsCheck = [ "simpful" ];
52 description = "Library for fuzzy logic";
53 homepage = "https://github.com/aresio/simpful";
54 changelog = "https://github.com/aresio/simpful/releases/tag/${version}";
55 license = with licenses; [ lgpl3Only ];
56 maintainers = with maintainers; [ fab ];
57 broken = stdenv.hostPlatform.isDarwin;